当前位置:   article > 正文

iis网站用Web.config文件设置301和404跳转,_web.config 301

web.config 301

在网站部署上线的时候一般都需要设置域名不带www的301从定向到带www,和404错误跳转页面,那么在iis环境下改该如何设置呢。

1、Web.config 设置不带www域名301重定向到带www的域名

   在web.config文件中,代码<system.webServer> </system.webServer> 中间添加如下代码

列:zzsi.net 301到 www.xxxx.net 或者 http 从重定向到https,destination的值就是你要重定向指定的域名

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <httpRedirect enabled="true" destination="http://www.xxxx.net$S$Q" exactDestination="true" httpResponseStatus="Permanent" />
  5. </system.WebServer>
  6. </configuration>

对于域名后面的“$S$Q”,有些博客说加不加都行,在这里总结一下:

1:如果你实现的重定向都是指定到同一个页面,或者是,你的网站无论点击那个页面,url地址都是没有改变的,那么这种情况加不加都无所谓

2:如果你的url地址有其他参数,就域名后面还有其他参数的话,那一定要加上“$S$Q”

建议加上

2、iis开启多网址重定向功能

比如

www.xxxx.net/news/  301跳转到  www.xxxxi.net/new/

www.xxxx.net/chanpin/  301跳转到  www.xxxxx.net/product/

www.xxxxx.net/anli/3.html  301跳转到  www.xxxx.net/case/5.html

前言:iis需要先打开URL重写功能

 1、在IIS上安装ARR,下载地址(Application Request Routing : The Official Microsoft IIS Site)

本站下载地址:https://download.csdn.net/download/qq_39339179/74387020

2、完成后打开,Microsoft Web Platform Installer

3、搜索arr关键字,安装应用程序请求路由

 4、搜索url关键字,安装url重写工具

 5、重启服务器,才能在iis目录下看到新安装的ARR

 6、打开ARR,在右侧功能菜单中点击   Server Proxy Settings

 7、勾选 Enable proxy,然后点击应用

 8、打开你要设置URL重写的网站目录,此时就能看到一个URL重写的功能

 9、双击打开,添加规则

此时可以在当前站点增加Index.html页面,里面说明即将要做的事情。

然后规则名随便起,模式输入:^(./*)  代表匹配当前网站192.168.1.223:8700,跳转规则为输入  192.168.1.223:8700/ss  则默认都跳转至新页面

下面的URL重定向页面直接写你的目标地址即可 

PS:如果想在输入 192.168.1.223:8700的地址时就立刻跳转到百度,则需要设置HTTP重定向

开启iisURL重写功能后,也可以直接用web.config文件重定向地址

2、Web.config设置 一个网址301到另一个网址

列 www.zzsi.net/index1.html   301到  www.zzsi.net/index2.html 

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <rewrite>
  5. <rules>
  6. <rule name="Foo_To_Bar" stopProcessing="true">
  7. <match url="^index1.html" />
  8. <action type="Redirect" url="/index2.html" redirectType="Temporary" />
  9. </rule>
  10. </rules>
  11. </rewrite>
  12. </system.webServer>
  13. </configuration>

3、多网址一对一301跳转

列:

www.xxxx.net/news/  301跳转到  www.xxxxi.net/new/

www.xxxx.net/chanpin/  301跳转到  www.xxxxi.net/product/

www.xxxxi.net/anli/3.html  301跳转到  www.xxxxi.net/case/5.html

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <configuration>
  3. <system.webServer>
  4. <rewrite>
  5. <rules>
  6. <rule name="Foo_To_Bar" patternSyntax="ExactMatch" stopProcessing="true">
  7. <match url="news/" />
  8. <action type="Redirect" url="/new/" redirectType="Permanent" />
  9. </rule>
  10. <rule name="重定向规则1" patternSyntax="ExactMatch" stopProcessing="true">
  11. <match url="chanpin/" />
  12. <conditions logicalGrouping="MatchAny">
  13. </conditions>
  14. <action type="Redirect" url="/product/" appendQueryString="false" redirectType="Permanent" />
  15. </rule>
  16. <rule name="重定向规则2" patternSyntax="ExactMatch" stopProcessing="true">
  17. <match url="anli/3.html " />
  18. <conditions logicalGrouping="MatchAny">
  19. </conditions>
  20. <action type="Redirect" url="/case/5.html" appendQueryString="true" />
  21. </rule>
  22. </rules>
  23. </rewrite>
  24. </system.webServer>
  25. </configuration>

4、Web.config 设置404错误跳转,并设置404返回状态码为 404

 在web.config文件中,代码<system.webServer> </system.webServer> 中间添加如下代码

  1. <httpErrors errorMode="DetailedLocalOnly">
  2. <remove statusCode="404" />
  3. <error statusCode="404" path="/404.aspx" responseMode="ExecuteURL"/>
  4. </httpErrors>

注意: 如果是asp网站,把404页面改为404.aspx格式在头部添加  如下代码即可 设置返回状态码为404

<% Response.Status = "404 Not Found"  %> 

如果是php网站的话把404页面改为404.php格式在头部添加  如下代码即可 设置返回状态码为404

<?php header(”HTTP/1.0 404 Not Found”);  ?>

本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/190099
推荐阅读
相关标签
  

闽ICP备14008679号