After migration Wordpress downloads and does not display page [closed]

0

The problem is as follows, after migrating from wordpress from one hosting to the other a problem occurs, it does not display anything just download a file called "download", I had this same error once but it was solved by own hosting.

.htaccess

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
    
asked by anonymous 27.01.2017 / 02:53

1 answer

1

Your question has given us a lot of information, you can not deduce much, but maybe that's the problem, if the .htaccess is in the same folder as wordpress ( only if it is ), remove the rewritebase and the / front of index.php:

RewriteEngine On

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
    
27.01.2017 / 03:01