移动设备的 URL 重写

发布于 2024-10-31 02:03:23 字数 623 浏览 1 评论 0原文

我知道这个问题已经被问过很多次了,但我仍然无法弄清楚我的代码出了什么问题。

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你曾走过我的故事 2024-11-07 02:03:23

如果您使用重写而不是重定向,它将起作用:

RewriteEngine on   
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|webos|googlebot-mobile" [NC]  
RewriteRule ^style.css$ /mobile.css [L,NC]  

It'll work if you use Rewrite instead of Redirect:

RewriteEngine on   
RewriteCond %{HTTP_USER_AGENT} "android|blackberry|ipad|iphone|ipod|iemobile|webos|googlebot-mobile" [NC]  
RewriteRule ^style.css$ /mobile.css [L,NC]  
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文