php 301 重定向实际上做了 302 重定向
我一直在谷歌上搜索这个问题,但似乎没有人有答案。
这篇文章很好地描述了这个问题:
http://www .mail-archive.com/[电子邮件受保护]/msg198576.html
服务器是 Windows 2008 快速CGI PHP 5
I have been googling for this but no one appears to have the answer.
This post describes the problem well:
http://www.mail-archive.com/[email protected]/msg198576.html
Server is Windows 2008
FastCGI
PHP 5
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
看来目前这个问题的唯一答案是在使用 PHP 时不要在 IIS7 上使用 FastCGI(因为 FastCGI 中的一个错误)——这是垃圾,因为它非常快。使用 isapi 可以让 301 重定向正常工作,但速度不够快。
It appears that the only answer to this one at the moment is to not use FastCGI on IIS7 when using PHP (because of a bug in FastCGI) - which is rubbish because it's very quick. Using isapi allows the 301 redirects to work as they should, but it's not as fast.
微软为此发布了修复程序:
http://www.microsoft.com。 com/downloads/en/results.aspx?freetext=980363&displaylang=en&stype=s_basic
microsoft released a fix for this:
http://www.microsoft.com/downloads/en/results.aspx?freetext=980363&displaylang=en&stype=s_basic
我这里没有 PHP 来测试这个,但这不会产生 301 吗?
I don't have PHP here to test this, but wouldn't this produce a 301?
它应该由 R. Bemrose 给出;这是通常的示例代码。我猜你的 PHP 执行环境有些不太对劲。
您可以尝试的另一种方法是传回状态行的 CGI 标准方法:
It should be as given by R. Bemrose; that's the usual example code. I guess there is something not-quite-right about your PHP execution environment.
Another method you can try is the CGI standard way of passing back a status line: