web.config将2个规则合并为1

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了web.config将2个规则合并为1相关的知识,希望对你有一定的参考价值。

我有3个规则作为基础1.隐藏html扩展2.重定向html 3.非www到www。

但是,当用户访问http://example.net/content - > http://www.example.net/content.html - > http://www.example.net/content时,这会导致2 301次重定向

<rule name="Hide .html ext">
      <match ignoreCase="true" url="^(.*)"/>
      <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
        <add input="{REQUEST_FILENAME}.html" matchType="IsFile"/>
      </conditions>
      <action type="Rewrite" url="{R:0}.html"/>
</rule>
<rule name="Redirecting .html ext" stopProcessing="false">
      <match url="^(.*).html"/>
      <conditions logicalGrouping="MatchAny">
        <add input="{URL}" pattern="(.*).html"/>
      </conditions>
      <action type="Redirect" url="{R:1}"/>
</rule>
<rule name="Redirect to www" stopProcessing="true">
      <match url="(.*)" />
      <conditions trackAllCaptures="false">
        <add input="{HTTP_HOST}" pattern="^example.net$" />
      </conditions>
      <action type="Redirect"
        url="{MapProtocol:{HTTPS}}://www.example.net/{R:1}" />
</rule>

我有一个特殊要求,只允许它为此页面执行1 301重定向。我尝试了多种方法但没有结果。我可以试试这个最好的方法是什么?

谢谢!

答案

添加为第二条规则:

<rule name="Redirect to www + .html ext" stopProcessing="true">
      <match url="(.*)" />
      <conditions trackAllCaptures="false">
        <add input="{HTTP_HOST}" pattern="^example.net$" />
        <add input="{URL}" pattern="(.*).html"/>
      </conditions>
      <action type="Redirect"
        url="{MapProtocol:{HTTPS}}://www.example.net/{R:1}" />
</rule>

以上是关于web.config将2个规则合并为1的主要内容,如果未能解决你的问题,请参考以下文章

从代码 C# 更改 Web.Config 中的 URL 重写规则

合并来自 2 个 jQuery 片段的功能

Nlog - Web.config 规则 - 仅用于 Global.asax 文件的日志文件?

如何从服务“内部”的代码访问托管在 IIS 中的 WCF 服务的 web.config

web.config 问题

如何组合绑定片段而不将它们包装在 XML 文字中