Site icon Hip-Hop Website Design and Development

Getting a 500 inside server error ONLY on wp-admin/options-permalink.php

I’ve entry to the admin panel, and every part works advantageous. I can click on settings->studying and alter something I wish to. But when I click on settings->permalinks I get a 500 inside server error. This is what I’ve tried:

I deleted the .htaccess file – nothing modified. I edited the .htaccess (as a result of I’m migrating this website to a brand new area) and now I’ve all of the web page hyperlinks engaged on the entrance finish AND all of the admin hyperlinks EXCEPT permalinks. In different phrases, the front-facing portion of the web site works. The entire admin options work. But when I click on settings->permalinks, it takes me to /wp-admin/options-permalink.php however masses my theme’s index.php template. Why?

I additionally re-installed all WordPress core recordsdata, to no avail.

Anybody have any concepts?

This is my present .htaccess file:

# 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>

# END WordPress