detecting IE 6 using .htaccess
Is there any w开发者_如何学运维ay to detect IE6 through htaccess?
Try this:
RewriteCond %{HTTP_USER_AGENT} "MSIE 6"<br>
RewriteRule (.*) http://www.mydomain.com/subfolder/
But remember it's super easy to modify your User Agent
精彩评论