把不带www的域名301到带www的域名,例如
xunruicms.com 定向 到 www.xunruicms.com
打开index.php
$host = strtolower($_SERVER['HTTP_HOST']);
if ($host == 'xunruicms.com') {
header("HTTP/1.1 301 Moved Permanently");
header("Location: http://www.xunruicms.com");exit;
}