管理员
中国推广网站长
- 最后登录
- 2025-1-26
- 注册时间
- 2017-1-2
|
楼主
推广网官方 发表于 2018-11-30 15:01:43
一、在网站根目录新建一个 301.inc.php 文件,写入以下代码,“bbs.iaozi.com”(共二处)处换成自己想要的新域名。
<?php
$request_uri = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';
if($request_uri == '/forum.php')
{
header('HTTP/1.1 301 Moved Permanently');
header('Location: https://bbs.iaozi.com');
}
?>
二、forum.php在这文件最开头添加:
<?php include("301.inc.php"); //301 Redirect ?>
|
|