设置网站301跳转,直接输入主域名跳转至www域名

输入主域名,自动跳转至www域名下,代码如下:

	$the_host = $_SERVER['HTTP_HOST'];//取得当前域名
	$the_url = isset($_SERVER['REQUEST_URI']) ? $_SERVER['REQUEST_URI'] : '';//判断地址后面部分
	$the_url = strtolower($the_url);//将英文字母转成小写
	
	
	if($the_url=="/index.php" || $the_url=="/index.html")//判断是不是首页
	{
	    $the_url="";//如果是首页,赋值为空
		header('HTTP/1.1 301 Moved Permanently');//发出301头部
	    header('Location:http://www.***.com');//跳转到带www的网址
		exit;
	}
	
	if($the_host == '***.com')//如果域名是不带www的网址那么进行下面的301跳转
	{
	    header('HTTP/1.1 301 Moved Permanently');//发出301头部
	    header('Location:http://www.***.com'.$the_url);//跳转到带www的网址
		exit;
	}
    原文作者:任性不起来了
    原文地址: https://blog.csdn.net/qq_38719570/article/details/116082979
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞