user1616846
user1616846

Reputation: 191

All my pages apart from index lead to a 404 page

My settings for permalinks: default : /?p=123 works but if I switch to by post name All pages stop working and just go to a 404

Upvotes: 0

Views: 84

Answers (1)

Lorie Dupont
Lorie Dupont

Reputation: 66

Check your permalink settings and see if you have enable rewriting in your .htaccess

# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

Upvotes: 1

Related Questions