How to redirect asp page (http://www.example.com/page.asp?id=11) to another domain (http://www.anothersite.com) using web.config file. I used below code but not working.
<configuration><location path="http://www.example.com/page.asp?id=11"><system.webServer><httpRedirect enabled="true" destination="http://www.anothersite.com" httpResponseStatus="Permanent" /></system.webServer></location></configuration>
Thanks.