htaccess ip lock or denial
🧪 How to Test If Apache Sees Your IP Correctly
You can confirm your public IP is being seen correctly by Apache:
Temporarily add this to .htaccess:
apache
Copy
Edit
Require all granted
SetEnvIf Remote_Addr ".*" real_ip=$0
Header set X-Your-IP "%{real_ip}e"
Then open dev tools in browser → Network tab → look at the response headers from /admin.
x-powered-by
PHP/5.6.40
x-your-ip
172.68.234.46
:authority
www.tanswa.in
✅ Clean & Working .htaccess for IP Whitelist (Apache 2.4+)
Here is the correct format for .htaccess in /admin/ to only allow 3 IPs:
Require all denied
Require ip 49.36.33.84
Require ip 192.227.69.212
Require ip 223.235.16.200
Comments
Post a Comment