I have just installed a new theme [Arras] but now permalinks (Categories, Tags & Previous Posts/Pages only) don't work.
I have tried updating my .htaccess file but it still did not work. All it does when I click on my permalinks is a blank page. Any idea on how to solve this problem?
I'm on the latest WP build. My site is alternatesam.com and this is my .htaccess file.
Options +FollowSymlinks All -Indexes
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress