Hi all,
I am having an issue where I cannot navigate to older posts on my blog, unless I use the defult style of permalinks.
The site: http://www.notyouraveragelawyer.com
Posts display fine up until page 4 when my own "posts not found" message appears. When using standard permalinks, this does not happen. It is only when I try to edit the permalink structure to a 'pretty permalink' structure that the posts cannot be displayed.
My .htaccess is configured as follows
# BEGIN WordPress
<IfModule mod_rewrite.c>
ErrorDocument 404 /index.php?error=404
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
Which I believe is correct.
The issue does not seem to occur with the basic wordpress theme.
Does anybody know a) how I can resolve this issue, and b)Which area I could troubleshoot within my themes files in order to try and find the issue.
Thanks for your help.