我知道这个问题已被多次询问过,但我仍然无法弄清楚代码中出了什么问题。
我的HTML上有一个样式表链接
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
如果用户在移动设备上,我想重定向到另一个文件。 我是这样做的:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/style.css$
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|webos|googlebot-mobile" [NC]
RewriteRule (.*) /mobile.css [L,R=302]
我的文件都位于子域的根目录中,因此我认为规则!^/style.css$
应该是正确的。
当我尝试访问/style.css
时,我没有重定向,但是当尝试访问/
时,Firefox会告诉我存在重定向循环。
我错过了什么吗? 感谢
答案 0 :(得分:1)
如果您使用重写而不是重定向,它将起作用:
RewriteEngine on
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|webos|googlebot-mobile" [NC]
RewriteRule ^style.css$ /mobile.css [L,NC]