Przepisz IIS

Ściągnij i zainstaluj:

x64: http://go.microsoft.com/?linkid=9722532
x86: http://go.microsoft.com/?linkid=9722533

Kopiowanie web.config C:inetpubwwwroot

config;
do:inetpubwwwrootweb.config

<!--?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="test" stopProcessing="true">
<match url=".*vcf/(.*)" />
<action type="Redirect" url="http://www.web.com/vcf/{R:1}" />
</rule>
</rules>
</rewrite>
<httpRedirect enabled="true" destination="http://www.web.com" childOnly="true" />
</system.webServer>
</configuration>