设置404页面301跳转首页的方法:
在网站根目录下,通过web.config文件来进行设置,代码以下:
<?xmlversion="1.0"encoding="UTF⑻"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rulename="Redirect"stopProcessing="true">
<matchurl=".*"/>
<conditions>
<addinput="{HTTP_HOST}"pattern="^123.com$"/>
</conditions>
<actiontype="Redirect"url="http://www.123.com/{R:0}"redirectType="Permanent"/>
</rule>
</rules>
</rewrite>
</system.webServer>
<system.webServer>
<httpErrorserrorMode="DetailedLocalOnly">
<removestatusCode="404"/>
<errorstatusCode="404"path="/404.htm"responseMode="ExecuteURL"/>
</httpErrors>
</system.webServer>
</configuration>
第一段是设置301重定向,第二段是设置404页面。
本文来源:https://www.yuntue.com/post/78288.html | 云服务器网,转载请注明出处!