關於網站做301跳轉的方法,你百度一下可以得出好多答案和好多方法,都是大同小異的,總之有些是你需要的,有些不是,總之想找到適合自己的卻很難找,以下我就做下簡單的總結,希望能夠幫助大家。
Linux下301重定向設置
2.將下面的代碼復制到.htaccess文件中,保存。
(單個域名跳轉)
RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^seozyw.com [NC]
RewriteRule ^(.*)$ http://www.seozyw.com/$1 [L,R=301]
多個域名跳轉
RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^www.1678tv.net [NC]
RewriteRule ^(.*)$ http://www.seozyw.com/$1 [L,R=301]
RewriteCond %{http_host} ^www.1678tv.com [NC]
RewriteRule ^(.*)$ http://www.seozyw.com/$1 [L,R=301]
或者
RewriteCond %{http_host} ^www\.1\.com.* [OR]
RewriteCond %{http_host} ^1\.com.* [OR]
RewriteCond %{http_host} ^2\.com.*
RewriteRule ^(.*)$ http://www.2.com/$1 [L,R=301]
3.將.htaccesss文件上傳至站點根目錄下。
IIS 7 301 重定向代碼 加到web.config裡
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="Enforce canonical hostname" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTP_HOST}" negate="true" pattern="^www.seozyw.com$" />
</conditions>
<action type="Redirect" url="http://www.seozyw.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
<defaultDocument>
<files>
<add value="index.asp" />
</files>
</defaultDocument>
</system.webServer>
</configuration>
轉載請注明文章來源seo資源網搜集整理