如何在PHP中进行URL重定向

时间:2019-02-20 21:10:41

标签: php wordpress

我们有一个Yahoo Hosting帐户,并且有一个包含.html文件的旧网站。我们的新站点正在运行WordPress,但是由于Yahoo托管规则,他们没有将WordPress安装在根文件夹中,而是让您将其安装在子文件夹/ blog中。

他们不给您访问.htaccess或任何东西的权限,所以我不能使用它。根目录下的内容是下面的index.php文件。

我不知道有什么方法可以在下面添加示例,以供参考。

示例 旧网址:http://example.net/TuitionFees.html 新网址http://example.net/blog/tuition/

这就是Yahoo在主目录中的内容。 index.php

<?php
/* Short and sweet */
define('WP_USE_THEMES', true);
define('WP_IN_ROOTDIR', true);
require('.//blog/wp-blog-header.php');
?>

1 个答案:

答案 0 :(得分:0)

您可以尝试使用wordpress提供的wp_redirect()功能。

示例:

wp_redirect( $url );
exit;

在此处查看更多信息:https://developer.wordpress.org/reference/functions/wp_redirect/