Darxus

How to deny access to your Apache web server to all Microsoft browser users

How to deny access to your Apache web server to all Microsoft browser users

Previous Entry Add to Memories Tell a Friend Next Entry
short hair
RewriteCond %{REQUEST_URI} !^/fail/$
RewriteCond %{HTTP_USER_AGENT} .*MSIE.*
RewriteRule .* /fail/ [R]

This redirects to the /fail/ page on your web site.

It will be interesting to see what happens to my log files.

(Reason in previous post.)