PHP 301 重定向位置 URI 格式

发布于 2024-11-02 09:13:58 字数 178 浏览 0 评论 0原文

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

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

发布评论

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

评论(2

以为你会在 2024-11-09 09:13:58

您还可以使用:

header('Location: /', false, 301);

我假设您想重定向到“主页”,那就是 / 而不是 ./

You can also use:

header('Location: /', false, 301);

I assume you want to redirect to the 'homepage', that'd be / instead of ./

回心转意 2024-11-09 09:13:58

您必须根据规范使用绝对URI,以便像下面这样的东西应该适合你:

// check if the server is secure or not to determine URL prefix
if(isset($_SERVER['HTTPS']) and 'on' === $_SERVER['HTTPS']) {
    $location = 'https://';
} else {
    $location = 'http://';
}

// get the servers base URL
$location .= $_SERVER['SERVER_NAME'] . '/';

// grab the current URI without a file name in it
$location .= dirname($_SERVER['REQUEST_URI']) . '/';

header('Location: ' . $location);
exit();

You must use an absolute URI according to the spec so something like the following should work for you:

// check if the server is secure or not to determine URL prefix
if(isset($_SERVER['HTTPS']) and 'on' === $_SERVER['HTTPS']) {
    $location = 'https://';
} else {
    $location = 'http://';
}

// get the servers base URL
$location .= $_SERVER['SERVER_NAME'] . '/';

// grab the current URI without a file name in it
$location .= dirname($_SERVER['REQUEST_URI']) . '/';

header('Location: ' . $location);
exit();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文