我试图通过htaccess将Internet Explorer的所有版本重定向到另一个页面,而不是最后一个版本。但它还是失败了。
我试过这样的东西:
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} "MSIE [4-8]" [NC,OR]
RewriteRule ^(.*)$ http://sitioweb.com [R=301,L]你能帮上忙吗?
发布于 2012-07-03 23:56:38
从上面的规则中删除,OR对我来说很有效:
RewriteCond %{HTTP_USER_AGENT} "MSIE [4-8]" [NC]
RewriteRule ^(.*)$ http://sitioweb.com [R=301,L]https://stackoverflow.com/questions/11314106
复制相似问题