PHP 301 重定向位置 URI 格式
header('Location: ')
的 URI(特别是 ./
)是否正确?
header ('HTTP/1.1 301 Moved Permanently');
header ('Location: ./');
谢谢。
Is this a correct URI for the header('Location: ')
, specifically ./
?
header ('HTTP/1.1 301 Moved Permanently');
header ('Location: ./');
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您还可以使用:
我假设您想重定向到“主页”,那就是 / 而不是 ./
You can also use:
I assume you want to redirect to the 'homepage', that'd be / instead of ./
您必须根据规范使用绝对URI,以便像下面这样的东西应该适合你:
You must use an absolute URI according to the spec so something like the following should work for you: