当前位置:   article > 正文

IIS重定向配置_iis 重定向

iis 重定向

在 ASP.NET项目里,在web.config文件里配置一些转发相关的内容的话,项目部署到IIS中之后,就能够看到iis的一些变化。
如下图:
在这里插入图片描述
当然,我们也可以在IIS的重定向里面使用图形化操作方式配置,配置完成之后保存,web.config文件里也会产生变化。
有些时候想要特别指定一些地址重定向、SEO方面的内容,就可能会很有用了,甚至可能是w唯一办法。


这里备份一下,没有别的什么意义。

<system.web>
<customErrors mode="Off" />
    <compilation debug="true" targetFramework="4.6.1" />
    <httpRuntime targetFramework="4.5.2" />
  </system.web>
  <system.webServer>
    <validation validateIntegratedModeConfiguration="false" />
    <httpRedirect enabled="false" destination="http://debug.www.mysite.cn/Release.html" exactDestination="true" childOnly="true" />
    <httpErrors>
      <remove statusCode="500" subStatusCode="-1" />
      <remove statusCode="404" subStatusCode="-1" />      
    </httpErrors>
        <rewrite>
            <rules>
                <clear />
                <rule name="/quanbu-quanbu" stopProcessing="true">
                    <match url="^([a-z1-9]+)/([a-z1-9]+)/(\S+)-quanbu$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
                    <action type="Redirect" url="{R:1}/{R:2}/{R:3}" />
                </rule>
                <rule name="重写规则1 对于 /quanbu" stopProcessing="true">
                    <match url="^([a-z1-9]+)/([a-z1-9]+)/quanbu$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
                    <action type="Redirect" url="{R:1}/{R:2}" appendQueryString="false" />
                </rule>
                <rule name="RemoveTrailingSlashRule2" stopProcessing="true">
                    <match url="^([a-z1-9]+)/([a-z1-9]+)/(news-\d{1,})/$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Redirect" url="{R:1}/{R:2}/{R:3}" />
                </rule>
                <rule name="RemoveTrailingSlashRule1" stopProcessing="true">
                    <match url="^([a-z1-9]+)/([a-z1-9]+)/([a-z-]*quanbu)/$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Redirect" url="{R:1}/{R:2}/{R:3}" />
                </rule>
                <rule name="AddTrailingSlashRule2" stopProcessing="true">
                    <match url="^([a-z1-9]+)/([a-z1-9]+)$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Redirect" url="{R:1}/{R:2}/" />
                </rule>
                <rule name="AddTrailingSlashRule1" stopProcessing="true">
                    <match url="^([a-z1-9]+)$" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
                        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
                    </conditions>
                    <action type="Redirect" url="{R:1}/" />
                </rule>
                <rule name="CanonicalHostNameRule1" stopProcessing="true">
                    <match url="(.*)" />
                    <conditions logicalGrouping="MatchAll" trackAllCaptures="false">
                        <add input="{HTTP_HOST}" pattern="^test-www\.mysite\.cn$" negate="true" />
                    </conditions>
                    <action type="Redirect" url="https://test-www.mysite.cn/{R:1}" />
                </rule>
            </rules>
        </rewrite>

  </system.webServer>
  <runtime>
    </runtime>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/190074
推荐阅读
相关标签