Well to add to the mystery, I’m encountering what looks like the same thing, except mine’s not working. commented out or not.
I’m positive that mod_rewrite is enabled,
the askapache rewriterules viewer is just confirming what I thought:
> Permalink: /%postname%/
> Writable .htaccess file found
> mod_rewrite found
> Not using pathinfo style index permalinks
> Using mod_rewrite permalinks
I’ve tried various combinations of the default htaccess file and the following:
# BEGIN WordPress
#<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /var/public_html/makeithappen/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /var/public_html/makeithappen/index.php [L]
#</IfModule>
# END WordPress
where /var/public_html/makeithappen/ is the wp install.
any ideas?