IIS configuration not to redirect to default.aspx

iis-7redirection

When i write http://www.spotagel.com it redirects to http://www.spotagel.com/default.aspx,
i tried some method to stop this, but they casued infinite loops. how can i do this without infinite loops

Best Answer

IIS isn't redirecting to default.aspx, IIS is being told that default.aspx is the preferred page to load first. To change this you need to change the default document property of the webpage you're working with.

See : http://www.iis.net/ConfigReference/system.webServer/defaultDocument

Related Topic