IE、Chrome 中的网页重定向...而不是 Firefox?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这种 .htaccess 规则通过重定向请求来起作用!末尾的
R=301
表示“重定向,发送 http 状态301
”,顺便说一句,您的规则会将 www.example.com 重定向到example.com。也许你想要相反的结果:
That kind of .htaccess rule works by redirecting the request! The
R=301
at the end means "redirect, sending http status301
"btw the rule you have will redirect www.example.com to example.com. Perhaps you want the opposite: