论坛风格切换
  • 4166阅读
  • 2回复

[常见问题]关于域名统一,网站移植,域名更换问题 [复制链接]

上一主题 下一主题
离线太史慈
 

发帖
766
金币
626
威望
556
只看楼主 倒序阅读 使用道具 楼主  发表于: 2011-05-20
[url=http://www.phpwind.com]phpwind[/url]
离线太史慈

发帖
766
金币
626
威望
556
只看该作者 沙发  发表于: 2011-05-30
关于域名统一如http://abc.com,现在要换成http://www.abc.com
同样修改一下global.php
加上
  1. $host= 'www.abc.com'; //填写你要统一的地址
  2. if ($_SERVER['HTTP_HOST'] != $host) {
  3.         header("HTTP/1.1 301 Moved Permanently");
  4.         header("Location: http://{$host}{$_SERVER[REQUEST_URI]}");
  5. }
  6. unset($host);


[url=http://www.phpwind.com]phpwind[/url]
离线太史慈

发帖
766
金币
626
威望
556
只看该作者 板凳  发表于: 2011-05-31
http://www.xxx.coms/bbs/index.php跳到http://bbs.xxx.coms/index.php
  1. $host= 'bbs.xxx.com'; //填写你要统一的地址
  2. if ($_SERVER['HTTP_HOST'] != $host) {
  3.         header("HTTP/1.1 301 Moved Permanently");
  4.         $new_request_uri = substr($_SERVER[REQUEST_URI],5);
  5.         header("Location: http://$host/$new_request_uri");
  6. }
  7. unset($host);
[url=http://www.phpwind.com]phpwind[/url]
快速回复
限100 字节
批量上传需要先选择文件,再选择上传
 
提到某人:
选择好友
上一个 下一个