MarathonStudios
MarathonStudios

Reputation: 4321

Rewrite path only if file/folder does not exist

I am using the IIS Rewriter module with my web.config, and would like to redirect certain requests for content in a subdirectory only if there isn't an actual folder/file that already matches the request. How can I do this?

Upvotes: 15

Views: 9898

Answers (1)

ademar
ademar

Reputation: 784

A little late but I'm going to leave an answer here for the next person that find this post.

Basically you need to add a couple of conditions to the rewrite rule. Example:

<rule name="Remove trailing slash" stopProcessing="true">
    <match url="(.*)/$"/>
    <conditions>
        <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
        <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
    </conditions>
    <action type="Redirect" redirectType="Permanent" url="{R:1}" appendQueryString="true"/>
</rule>

Upvotes: 32

Related Questions