Reputation: 100
I got 500 internal server error after changing wordpress permalinks. It gives me the same error for all the options except the plain one.
The error is only on the post pages. Many people say that wordpress is not allowed to edit .htaccess file. However, I have a plugin which edited my .htaccess file successfully.
Two more things that might be important I use proxy to run the blog and here is what inside .htaccess file
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /news/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /news/index.php [L]
</IfModule>
# END WordPress
Upvotes: 2
Views: 1942
Reputation: 2192
Rename your htaccess file and then set permalinks plain and save setting it will create new htaccess file , then set post name permalink again and save the setting
hope this will work for you
Upvotes: 1