I edited my wp-login.php and on the first line added this die(“Hello”);
if wp-login.php was executed it would die .. but I still get the not found page ..
my .htaccess file has this
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
the request doesn’t reach wp-login.php
is there anything wrong with the routing or whtever ..plz help