Having issues with pagination url redirecting to homepage
Running
EE v2.5.2
Modules installed:
Channel 2.0.1 Installed
Code Pack 1.2.1 Installed
Comment 2.3 Installed
Email 2.0 Installed
Emoticon 2.0 Installed
jQuery 1.0 Installed
Member 2.1 Installed
Profile:Edit 1.0.7 Installed
Rich Text Editor 1.0 Installed
SafeCracker 2.1 Installed
Structure 3.3.2 Installed
Super Search 2.0.4 Installed
.htaccess looks like:
<IfModule mod_rewrite.c>
RewriteEngine On
# Removes index.php
RewriteCond $1 !\.(gif|jpe?g|png)$ [NC]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /index.php?/$1 [L]
# If 404s, “No Input File” or every URL returns the same thing
# make it /index.php?/$1 above (add the question mark)
</IfModule>
Example:
Goto page: http://mysite.com/another-page
Click on the pagination link
Which has a url of http://mysite.com/another-page/P12
I get redirected to the homepage.
Anyone?