How can I block my site from being accessed by the iternet explorer via .htaccess? I already tried codes like:
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} "MSIE [6-8]" [NC]
RewriteRule ^(.*)$ http://mysite.com/ie [R=301,L]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} *MSIE*
RewriteRule ^index\.html$ http://example.com/ie/ [L]
RewriteRule ^/$ http://example.com/index.html [L]
</IfModule>
But it did not work, does anyone know any other code that works?