域名同步
include/common.inc.php
在
複製內容到剪貼板
代碼:
error_reporting(0);
set_magic_quotes_runtime(0);下加上
複製內容到剪貼板
代碼:
$domain = 'bbs.pczero.cn'; //新域名
if ($_SERVER['HTTP_HOST'] != $domain) {
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://{$domain}{$_SERVER[REQUEST_URI]}");
}
unset($domain);