?
首頁 >新聞動(dòng)態(tài) > 公司動(dòng)態(tài)
時(shí)間:2021-06-11來源:網(wǎng)騎士
對(duì)于網(wǎng)站SEO優(yōu)化,域名的唯一性也是優(yōu)化的一個(gè)重點(diǎn),其中就包括了重定向,網(wǎng)站域名通常包括不帶www的域名和到帶www的域名,為了SEO優(yōu)化的需要,我們要將不帶www域名重定向到帶www域名,那么如何做呢,下面小編就介紹一下具體的實(shí)現(xiàn)方法。
Apache
編輯網(wǎng)站根目錄下的。htaccess 文件,在文件里增加如下內(nèi)容:
RewriteEngine on
rewriteCond %{http_host} ^cnrider.com [NC]
rewriteRule ^(.*)$ http://www.sogyw.cn/$1 [L,R=301]
IIS
在IIS 7.0以上的版本,有一個(gè)跟.htaccess非常類似的文件web.config,功能也非常強(qiáng)大,編輯根目錄下的web.config文件,在文件里增加如下內(nèi)容:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="WWW Redirect" stopProcessing="true">
<match url=".*" />
<conditions>
<add input="{HTTP_HOST}" pattern="^cnrider.com$" />
</conditions>
<action type="Redirect" url="http://www.sogyw.cn/{R:0}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
如果用戶網(wǎng)站支持https的話,可以將重定向地址也修改為https,至于http如何重定向到https,下篇文章為大家講解http如何重定向到https,敬請(qǐng)關(guān)注深圳網(wǎng)騎士科技。