Hi, I did not find a solution for this:I want to restrict access to certain files to requests coming from the same public ip address the server is running on, like so:
<files wp-login.php> order deny,allow deny from all allow from xx.xx.xx.xx </files>To make it more maintainable I would like to use the %{SERVER_ADDR} environment variable, but this does not work:
<files wp-login.php> order deny,allow deny from all allow from %{SERVER_ADDR} </files>I tried several combinations, also combined with SetEnfIf and syntax variations, but still no success.
How can I allow access only if REMOTE_ADDR == SERVER_ADDR ? Thanks! Bughunter --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscribe@xxxxxxxxxxxxxxxx For additional commands, e-mail: users-help@xxxxxxxxxxxxxxxx