移动设备的 URL 重写
我知道这个问题已经被问过很多次了,但我仍然无法弄清楚我的代码出了什么问题。
我的 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 告诉我存在重定向循环。
我错过了什么吗? 谢谢
I know that this question has a been asked many times, but I still can't figure out what's going wrong in my code.
I have a stylesheet link on my HTML
<link rel="stylesheet" href="style.css" type="text/css" media="screen" />
And I want to redirect to another file if the user is on a mobile device.
I did it this way:
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]
My files are all in the root of a subdomain, so I guess that the rule !^/style.css$
should be correct.
When I try to reach /style.css
, I don't have a redirection, but when a try to reach /
, Firefox tells me there is a redirection loop.
Do I miss something?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用重写而不是重定向,它将起作用:
It'll work if you use Rewrite instead of Redirect: