Using brand new install of wordpress 2.7 with no plugins activated and default theme, paged comments always redirects to 404 when posting or clicking on links created by WP.
I'm using a static front page, have permalinks set to custom using /%postname%/ and htaccess is writable.
Is there some extra setting I need to add to my htaccess to make this work? Or is this a bug that hasn't been fixed yet? Lots of posts on this problem but no solution posted yet.
My htaccess looks like this,
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /marlboromanwp/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /marlboromanwp/index.php [L]
</IfModule>
# END WordPress
I should add that all other pages and permalinks work fine( and there's quite a few), only the links that have "comments-page-" don't work.