郑建立 發表於 2024-4-28 00:00:00

织梦模板DEDECMS首页301重定向的代码教程

<p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;">
        DEDECMS首页301重定向,将不带www的主域名定向到带www</p><div class="jb51code" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><pre class="brush:php;toolbar:false;">//主域名301跳转到www&nbsp;&nbsp;&nbsp;
$redirect301=1;&nbsp;//301跳转开关,1代表打开,0代表关闭&nbsp;&nbsp;&nbsp;
$index_file=&#39;index.html&#39;;&nbsp;//指定网站默认首页文件,DeDeCMS设置为index.html,不支持SSI(shtml/shtm)&nbsp;&nbsp;&nbsp;
if(substr($_SERVER[&#39;SERVER_NAME&#39;],0,4)!=&#39;www.&#39;&amp;&amp;$redirect301)&nbsp;//判断URL中是否带www&nbsp;&nbsp;&nbsp;
{&nbsp;&nbsp;&nbsp;
header(&#39;HTTP/1.1&nbsp;301&nbsp;Moved&nbsp;Permanently&#39;);&nbsp;&nbsp;&nbsp;
header(&#39;Location:http://www.&#39;.$_SERVER[&#39;SERVER_NAME&#39;]);&nbsp;//301跳转到www&nbsp;&nbsp;&nbsp;
exit();&nbsp;&nbsp;&nbsp;
}</pre></div><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;">
        把上边的代码加入到首页index.php中</p><div class="jb51code" style="margin: 0px; padding: 0px; outline: none; line-height: 25.2px; font-size: 14px; width: 660px; overflow: hidden; clear: both; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;"><pre class="brush:php;toolbar:false;">if(!file_exists(dirname(__FILE__).&#39;/data/common.inc.php&#39;))</pre></div><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;">
        的上边。</p><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;">
        但请注意了:如果你的默认首页index.html排在了index.php上面,那么以上方法就不管用了。</p><p style="margin: 0px; padding: 5px 0px; outline: none; font-size: 14px; line-height: 30px; font-family: tahoma, arial, &quot;Microsoft YaHei&quot;;">
        以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。</p>
頁: [1]
查看完整版本: 织梦模板DEDECMS首页301重定向的代码教程