all rewritten site links not working
-
For a clients site there were custom rewritten urls and now all of those urls link to a 404 page but not my custom 404 page. Now my .htaccess file looks like this
<IfModule mod_suphp.c>
suPHP_ConfigPath /php.ini
<Files php.ini>
order allow,deny
deny from all
</Files>
</IfModule># BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule># END WordPress
Any idea what happened here?
- The topic ‘all rewritten site links not working’ is closed to new replies.