Here's a potential weird one...
I just shuffled my third and final blog over to WP from Blogger and I'm having problems with *some* of the Archives. I've got monthly archives going back about 4 years. Using the drop-down widget on the main page, I can happily select any of them as far back as:
http://www.moshblog.me.uk/2008/12/
However, go back to the previous month (or any prior to that) and I get:
Error 403 - Forbidden
You tried to access a document for which you don't have privileges.
I've gone to the last post on the December page and stepped back using "previous post" and the articles are fine on a one-by-one basis. It's purely when I try to get to the archive pages it falls apart.
Yes (obviously), I have Pretty Permalinks enabled - otherwise I assume they'd all fail!
My .htaccess file as it stands:
'# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
DirectoryIndex index.php
Redirect permanent /atom.xml http://www.moshblog.me.uk/feed/rss2/
Redirect permanent /rss.xml http://www.moshblog.me.uk/feed/rss2/
Redirect permanent /index.html http://www.moshblog.me.uk/index.php'