put following in httpd.conf
Code:
<LocationMatch ".*/wp-login.php">
Order deny,allow
Deny from all
</LocationMatch>
I ran tests
/abc/wp-login.php
/wp-login.php
/xxx/wp-login.php/yyy
...
all of above have received "403 Forbidden" as expected, under both apache and litespeed.
of course, this only tests LocationMatch. not mod_security rule.
can do disable mod_security rule temporarily, and ran above tests on LocationMatch first?