<?xml version="1.0" encoding="UTF-8"?>
<!--
Custom web.config - by Adam Jones (www.aam-makes-websites.com)
Last Updated: 13/1/11

Note: For this to work you need to go into the "Internet Information Services (IIS) Manager" program and at some level of the programs settings tree (either at a top computer name level OR the specific site level) do the following:
1) Go into the "Error Pages" properties 
2) On the right of the screen click  "Edit Feature Settings..."
3) Select "Custom Error Pages"
4) Finally inside this actual file update "viart_folder" for the folder of your viart installation, in relation to the path from the web accessible root of your IIS installation.
-->
<configuration>
    <system.webServer>
        <httpErrors errorMode="Custom">
            <remove statusCode="404" subStatusCode="-1" />
            <error statusCode="404" prefixLanguageFilePath="" path="/viart_folder/friendly_url.php" responseMode="ExecuteURL" />
        </httpErrors>
    </system.webServer>
</configuration>
