I want to redirect as follows:
http://www.example.com/something1 http://www.example.com/something2 http://www.example.com/something3
to
http://www.example.com/something1.aspx http://www.example.com/folder/something2.pdf http://www.example.com/something3.aspx?id=10
and still show the original url in the browser (under the hood redirection)
Environment - IIS 6 / Asp.Net 3.5 on Windows Server 2003 Service Pack 2
How can I do this using web.config or IIS.
I know how to handle redirects if I can map the extension to aspnet_isapi.dll and use Context.RewritePath(string) , but I don't know how to do this for URLs that don't have extensions.
source share