IIS Rewrite

Download and install:

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

Copy web.config C:inetpubwwwroot

Config;
C: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>