WordPress: permalinks stop working

Ensure you have a .htaccess file with the following

# BEGIN WordPress
<#IfModule mod_rewrite.c#> *take out the #’s*
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
<#/IfModule#> *take out the #’s *

# END WordPress

Comments are closed.