新闻资讯

掌握最新资讯,了解关于我们的最新动态!
您当前位置首页 > 新闻资讯 > 云服务器

如何做301跳转

更新时间:2024-05-21 12:59

Linux下301重定向设置

1.登陆后台,开启伪静态支持
2.将下面的代码复制到.htaccess文件中,保存。
(单个域名跳转)
RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^mfisp.com [NC]
RewriteRule ^(.*)$ http://www.mfisp.com/$1 [L,R=301]

多个域名跳转
RewriteEngine on
RewriteBase /
RewriteCond %{http_host} ^www.hkdfc.net [NC]
RewriteRule ^(.*)$ http://www.mfisp.com/$1 [L,R=301]
RewriteCond %{http_host} ^www.hkdfc.com [NC]
RewriteRule ^(.*)$ http://www.mfisp.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.mfisp.com$" />
</conditions>
<action type="Redirect" url="http://www.mfisp.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
<defaultDocument>
<files>
<add value="index.asp" />
</files>
</defaultDocument>
</system.webServer>
</configuration>

QQ图片20240521125507.png



成为冠星云会员,享受出众的上云实践机会和周到的尊贵服务!

立即注册