Magento URL Rewrite via web.config.
Voeg de volgende regels toe aan de web.config:
   <rewrite>
     <rules>
       <rule name="Remove index.php rule" stopProcessing="true">
         <match url=".*" ignoreCase="false"/>
         <conditions>
           <add input="{URL}" pattern="^/(media|skin|js)/" ignoreCase="false" negate="true" />
           <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" />
           <add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true" />
         </conditions>
         <action type="Rewrite" url="index.php" />
       </rule>
     </rules>
</rewrite>
Plaats deze tussen:
Â
    <system.webServer>
   Â
Â