如何设置404页面301跳转首页 网站怎么设置301跳转

主机教程 建站分享 2年前 (2022-11-25) 410次浏览

文章摘要:如何设置404页面301跳转首页 网站怎么设置301跳转

设置404页面301跳转首页的方法: 在网站根目录下,通过web.config文件来进行设置,代码如下: &l […]

设置404页面301跳转首页的方法:

在网站根目录下,通过web.config文件来进行设置,代码如下:

<?xml version="1.0" encoding="UTF-8"?>

<configuration>

<system.webServer>

<rewrite>

<rules>

<rule name="Redirect" stopProcessing="true">

<match url=".*" />

<conditions>

<add input="{HTTP_HOST}" pattern="^123.com$" />

</conditions>

<action type="Redirect" url="http://www.123.com/{R:0}" redirectType="Permanent" />

</rule>

</rules>

</rewrite>

</system.webServer>

<system.webServer>

<httpErrors errorMode="DetailedLocalOnly">

<remove statusCode="404" />

<error statusCode="404" path="/404.htm" responseMode="ExecuteURL" />

</httpErrors>

</system.webServer>

</configuration>

第一段是设置301重定向,第二段是设置404页面。


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:如何设置404页面301跳转首页 网站怎么设置301跳转
文章链接:http://www.7966.org/post/16182.html
转载请注明出处

喜欢 (0)