I want to redirect index.php
to home
in this snippet.
<system.webServer>
<rewrite>
<rules>
<rule name="Redirect index.php to home" stopProcessing="true">
<match url="index.php" ignoreCase="false" />
<action type="Redirect" url="home" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
I have IIS Express 8.5 running. No redirect is happening for http://localhost/index.php, I get index.php and the same old 404. Tried deleting browser cache, didn't help. Any idea?
I don't have to do anything to enable the Url-Rewrite-Module, do I?