mod_rewrite generating Internal Server errors?
-
I grabbed WP out of CVS today, deciding I’ll start over from scratch again, if it’s what it takes to get things working again.
It had creation of permalinks to use with mod_rewrite. I thought this’d be a good thing for me.
However, what I ended up with was an Internal Server Error on its inclusion.
The contents of my .htaccess, just in case it’s other contents are relevant:
DirectoryIndex index.php index.html
ErrorDocument 404 /404.php
ErrorDocument 403 /403.php
ErrorDocument 500 /500.php
ServerSignature Off
Options +MultiViews
RewriteEngine On
RewriteBase /
RewriteRule ^/?a/?([0-9]{4})?/?([0-9]{1,2})?/?([0-9]{1,2})?/?([0-9a-z-]+)?/?$ /weblog?year=$1&monthnum=$2&day=$3&name=$4 [QSA]
The portion at the end is what I just added, from what WordPress gave me for creating my preferred cleaner links.
Is there something I have missed?
- The topic ‘mod_rewrite generating Internal Server errors?’ is closed to new replies.