Home > CMS Tutorial > DEDECMS > body text

How to redirect 301 on DEDECMS homepage

藏色散人
Release: 2019-12-03 09:09:03
Original
2532 people have browsed it

How to redirect 301 on DEDECMS homepage

How to 301 redirect the DEDECMS homepage?

DEDECMS homepage 301 redirect, redirect the main domain name without www to the main domain name with www

Recommended learning: 梦Weavercms

//主域名301跳转到www   
$redirect301=1; //301跳转开关,1代表打开,0代表关闭   
$index_file='index.html'; //指定网站默认首页文件,DeDeCMS设置为index.html,不支持SSI(shtml/shtm)   
if(substr($_SERVER['SERVER_NAME'],0,4)!='www.'&&$redirect301) //判断URL中是否带www   
{   
header('HTTP/1.1 301 Moved Permanently');   
header('Location:http://www.'.$_SERVER['SERVER_NAME']); //301跳转到www   
exit();   
}
Copy after login

Add the above code to the top of

if(!file_exists(dirname(__FILE__).'/data/common.inc.php'))
Copy after login

in index.php on the homepage.

But please note: If your default homepage index.html is ranked above index.php, then the above method will not work.

The above is the detailed content of How to redirect 301 on DEDECMS homepage. For more information, please follow other related articles on the PHP Chinese website!

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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!