【发布时间】:2020-10-11 08:17:13
【问题描述】:
我在我的 web.config 中找到了这行代码,但我无法理解它对我的网站到底有什么作用。如果你能帮助我在我的 web.config 中有什么需要,我真的很感激
<rule name="RewriteHTML">
<match url="(.*)" />
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
</conditions> <action type="Rewrite" url="{R:1}.html" />
</rule>
【问题讨论】:
标签: html asp.net web-config