c# - ReWrite only root URL in IIS - ignore everything else? -
curious knows way re-write root url of app in iis , ignore else?
for example:
www.test.com/ re-directs web.test.com
www.test.com redirects web.test.com
www.test.com/intro not redirect
http://www.iis.net/downloads/microsoft/url-rewrite iis has url rewrite plugin.when install this,you can add rule use regex
www.test.com[/]{0,1}$ match www.test.com or www.test.com/ not match www.test.com/intro,so can redirect match url
Comments
Post a Comment