WordPress: permalinks stop working

Published by

Posted on January 12, 2009

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