IIS URL重写以访问子文件夹内容

时间:2014-11-08 22:47:33

标签: iis web-config

是否可以创建一个URL重写,将子文件夹的内容放在根目录中?

  

实施例

     

/ pages / article1将从/ article1

到达      

/ pages / otherstuff将从/ otherstuff

到达

我不想使用虚拟目录,因为我们在讨论/ pages文件夹中的数百个静态页面。

1 个答案:

答案 0 :(得分:1)

我自己找到了答案......这就是诀窍:

<rule name="RemoveSEOFolder" stopProcessing="true">
    <match url="^seo$|^seo/(.*)$" />
    <conditions>
    </conditions>
    <action type="Redirect" url="seo/{R:1}" />
</rule>
<rule name="RewriteToFile">
    <match url="^(?!seo/)(.*)" />
    <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Rewrite" url="seo/{R:1}" />
</rule>