I'm using IIS for serving static files only. I would like to map the path /foo to bar.html (or any other file). How can I do this?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
There are also many other URL rewrite modules for IIS, the above ones are free and I've successfully used both of them in my projects. |
|||
|
|
|
You are looking at doing some URL Rewriting check this article: http://msdn.microsoft.com/en-us/library/ms972974.aspx If your mapping needs are simple I would roll my own HttpHandler: http://msdn.microsoft.com/en-us/library/ms228090.aspx But since you are serving static files and don't want any custom code, you can try to use outbound rules: http://learn.iis.net/page.aspx/657/creating-outbound-rules-for-url-rewrite-module/ |
||||