File: D:/web/hypercomposites/web.config
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<defaultDocument>
<files>
<add value="products.asp" />
</files>
</defaultDocument>
<httpErrors errorMode="DetailedLocalOnly">
<remove statusCode="404" subStatusCode="-1" />
<error statusCode="404" prefixLanguageFilePath="" path="/products.asp?page=404" responseMode="ExecuteURL" />
</httpErrors>
<rewrite>
<rules>
<rule name="Rewrite sitemap.xml to google-sitemap.asp" patternSyntax="ExactMatch" stopProcessing="true">
<match url="sitemap.xml" />
<action type="Rewrite" url="google-sitemap.asp" appendQueryString="false" />
</rule>
<rule name="Rewrite sitemap.htm to products.asp?page=sitemap" patternSyntax="ExactMatch" stopProcessing="true">
<match url="sitemap.htm" />
<action type="Rewrite" url="products.asp?page=sitemap" appendQueryString="false" />
</rule>
<rule name="Rewrite sitemap.htm to products.asp?page=regional-sitemap" patternSyntax="ExactMatch" stopProcessing="true">
<match url="regional-sitemap.htm" />
<action type="Rewrite" url="products.asp?page=regional-sitemap" appendQueryString="false" />
</rule>
</rules>
</rewrite>
<httpRedirect enabled="true" destination="https://www.hyperflight.co.uk$V$Q" exactDestination="true" httpResponseStatus="Permanent" />
</system.webServer>
</configuration>