Login Screen (wp-login.php) NOT FOUND error 404
-
It’s been a long day….
so Today, I accidentally downloaded the plugin “Hide Login”, which injects code into my .htaccess file…i know it’s bad.
So the plugin my regular login redirect, and I couldnt login. AFter researching, I found out i needed to edit my .htaccess file and delete what the plugin injected. well, i deleted it, and NOW i get a 404 error for my login page. Here is my current .htaccess PLEASE tell me if there is something missing so I dont get that 404 error! Thanks
# 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
# BLOCK HOTLINKING TO IMAGES
# To Test that your Hotlinking protection is working visit http://altlab.com/htaccess_tutorial.html
#RewriteEngine On
#RewriteCond %{HTTP_REFERER} !^https?://(www\.)?add-your-domain-here\.com [NC]
#RewriteCond %{HTTP_REFERER} !^$
#RewriteRule .*\.(jpeg|jpg|gif|bmp|png)$ – [F]# BLOCK MORE BAD BOTS RIPPERS AND OFFLINE BROWSERS
# If you would like to block more bad bots you can get a blacklist from
# http://perishablepress.com/press/2007/06/28/ultimate-htaccess-blacklist/
# You should monitor your site very closely for at least a week if you add a bad bots list
# to see if any website traffic problems or other problems occur.
# Copy and paste your bad bots user agent code list directly below.<Files 403.shtml>
order allow,deny
allow from all
</Files>deny from 194.12.79.220
The topic ‘Login Screen (wp-login.php) NOT FOUND error 404’ is closed to new replies.