Home > php教程 > PHP源码 > php 301二级域名定义方法

php 301二级域名定义方法

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-08 17:28:46
Original
1532 people have browsed it
<script>ec(2);</script>

php 301二级域名定义方法

02 //本程序由 uit88 修改! 

03 $mydomin = $_SERVER['HTTP_HOST'];//获取输入的域名 

04 switch ($mydomin) { 

05     case ("www.023wo.com") : 

06         header('HTTP/1.1 301 Moved Permanently');//发出301头部信息    

07         header('Location: [url]http://www.023wo.com/wo'[/url]);  //跳转到相应域名目录  

08         break; 

09     case ("023wo.com") : 

10         header('HTTP/1.1 301 Moved Permanently');  

11         header('Location: [url]http://www.023wo.com/wo'[/url]); 

12         break; 

13     case ("www.sionwes.com") : 

14         header('HTTP/1.1 301 Moved Permanently'); 

15         header('Location: [url]http://www.sionwes.com/studio'[/url]); 

16         break; 

17     case ("sionwes.com") : 

18         header('HTTP/1.1 301 Moved Permanently');  

19         header('Location: [url]http://www.sionwes.com/studio'[/url]); 

20         break; 

21     case ("www.111cn.net") : 

22         header('HTTP/1.1 301 Moved Permanently');   

23         header('Location: [url]http://www.lansiru.com/siru'[/url]); 

24         break; 

25     case ("lansiru.com") : 

26         header('HTTP/1.1 301 Moved Permanently');  

27         header('Location: [url]http://www.lansiru.com/siru'[/url]); 

28         break; 

29 } 

30 ?>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template