Entry tags:
How to deny access to your Apache web server to all Microsoft browser users
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.)
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.)