WHAT'S NEW?
Loading...

How to fix Wordpress Internal Server Error


After moving your site to VPS/Dedicated Server or to an new hosting are you facing 500 Internal Server error on the index Page of your worpdress blog.It was due to because of corrupted .htaccess file you need to delete the .htaccess file and add a new file the following code :
Create a new .htaccess file
Paste the below code :

# 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

Then save the file.

Now the issue should be fixed !



0 comments: