To block hackers that are often behind a proxy, I have added this to my .htaccess:
RewriteCond %{HTTP:VIA} !^$ [OR]
RewriteCond %{HTTP:FORWARDED} !^$ [OR]
RewriteCond %{HTTP:USERAGENT_VIA} !^$ [OR]
RewriteCond %{HTTP:X_FORWARDED_FOR} !^$ [OR]
RewriteCond %{HTTP:PROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:XROXY_CONNECTION} !^$ [OR]
RewriteCond %{HTTP:HTTP_PC_REMOTE_ADDR} !^$ [OR]
RewriteCond %{HTTP:HTTP_CLIENT_IP} !^$
RewriteRule ^.* - [F]
Unfortunately, one member can“t access the site from her job at a govermental organization. I suggested that she try to access the site through a web proxy, like
http://www.the-cloak.com/ . But she are not allowed to access these type of sites either at her job. Is it possible to allow her domain or ip-range in .htaccess, so she can access my site? Can she do anything herself to be able to access the site?