IE、Chrome 中的网页重定向...而不是 Firefox?

发布于 2024-10-26 02:17:59 字数 144 浏览 2 评论 0原文

使用 firebug,抓取 HTTP 标头。firefox 给出 200 OK 状态。

Chrome 中的 Firebug 告诉我这是 301 重定向。

问题是页面不应该重定向。 htaccess 只强制 WWW..

救命!

With firebug, grab the HTTP headers.. firefox gives 200 OK status.

Firebug in Chrome, tells me it is a 301 redirect.

The problem is that the page is not supposed to redirect. The htaccess only forces WWW..

Help!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

凉世弥音 2024-11-02 02:17:59

这种 .htaccess 规则通过重定向请求来起作用!末尾的 R=301 表示“重定向,发送 http 状态 301”,

顺便说一句,您的规则会将 www.example.com 重定向到example.com。也许你想要相反的结果:

RewriteCond %{HTTP_HOST} ^website.com [NC] 
RewriteRule ^(.*)$ www.website.com/$1 [L,R=301]

That kind of .htaccess rule works by redirecting the request! The R=301 at the end means "redirect, sending http status 301"

btw the rule you have will redirect www.example.com to example.com. Perhaps you want the opposite:

RewriteCond %{HTTP_HOST} ^website.com [NC] 
RewriteRule ^(.*)$ www.website.com/$1 [L,R=301]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文