Question
Wordpress wp-login.php and other admin files are getting downloaded instead of opening. How to solve this?
I am using this rule in nginx config present in /etc/nginx/sites-available/wordpress.
location ~ '(/wp-login.php|/wp-admin)' { if ($http_cookie !~ 'cookiename') { return 404; } }
This works and shows 404 when cookie is not present but problem comes when cookie exists and thereafter a dialog box opens to ask where to save wp-login.php and wp-admin files.
How to solve this ?
Any help is appreciated.
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×