URL重写 - 删除.html扩展名

时间:2012-04-18 13:56:57

标签: .net html iis url-rewriting web-config

所以我们的想法是从每个页面中删除.html扩展名,就像这样......

www.website.com/File.html > www.website.com/File
www.website.com/Folder/File.html > www.website.com/Folder/File

现在我已经设法使用URL Rewrite执行此操作,但这意味着必须为每个页面编写重写,这非常耗时,如果网站超过20页则不切实用且不切实际。

有没有办法在web.config中只写一两次重写?

3 个答案:

答案 0 :(得分:9)

这个解决方案最终对我有用:

<rule name="RedirectUserFriendlyURL1" stopProcessing="true">
    <match url="^(.*)\.(.*)$" />
    <conditions>
        <add input="{REQUEST_METHOD}" pattern="^POST$" negate="true" />
    </conditions>
    <action type="Redirect" url="{R:1}" appendQueryString="false" />
</rule>
<rule name="RewriteUserFriendlyURL1" stopProcessing="true">
    <match url="^(.*)$" />
    <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
    </conditions>
    <action type="Rewrite" url="{R:1}.(.*)" />
</rule> 

答案 1 :(得分:0)

使用IIS 7.x的重写模块:
http://www.techrepublic.com/blog/webmaster/url-rewriting-with-iiss-url-rewrite-module/710

虽然我已经尝试了这一点,但我从来没有得到实际的规则集来自动没有具有规则页面名称。

+1给任何能够阐明这一点的人!

答案 2 :(得分:0)

在此处添加Remove HTML extension with web config permanently中的答案。使用URL Rewrite 2.1模块,这对我来说非常有效。您将其编辑到applicationHost.config文件中。 感谢https://stackoverflow.com/users/1821692/feeeper

<rewrite>
    <rules>
        <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="true">
            <match url="^(.*).html"/>
            <conditions logicalGrouping="MatchAny">
                <add input="{URL}" pattern="(.*).html"/>
            </conditions>
            <action type="Redirect" url="{R:1}"/>
        </rule>
    </rules>
</rewrite>