How to create an alias on local IIS?

Unfortunately, searching the Internet has not made me smarter. I have a web application running under my local IIS 7.5: http://localhost/myWebpage/ Now I would like to create an alias path pointing to one application, something like http://localhost/myWebpageAlias/ (the application will change layout according to another address).

How can I achieve this?

thanks for any tips sl3dg3

+7
source share
2 answers

Try creating a new virtual directory in the "Default website" section (or some site serves as "localhost"), and then point it to the same directory:

enter image description here

+3
source

Although it is too late, the answer. But for aliases, you can use the IIS URL rewrite module to create a rule that maps one URL to another. Visit here for a detailed description.

0
source

All Articles