IIS URL Rewrite: Fügen Sie einen abschließenden Schrägstrich mit Ausnahme von .html und .aspx hinzu
Das Hinzufügen eines abschließenden Schrägstrichs zu allen URLs über das IIS-URL-Rewrite-Modul ist weit verbreitetFügen Sie Ausnahmen für URLs hinzu, die mit .html und .aspx enden?
Heute habe ich das:
<rule name="Add trailing slash" stopProcessing="true">
<match url="(.*[^/])$" />
<conditions>
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
<!-- Doesn't seem to be working -->
<!--<add input="{REQUEST_URI}" pattern="(.*?).html$" negate="true" />-->
<!--<add input="{REQUEST_URI}" pattern="(.*?).aspx$" negate="true" />-->
</conditions>
<action type="Redirect" redirectType="Permanent" url="{R:1}/" />
</rule>