index.aspx is the default of the website. So when http://domain.com/ is requested it loads the index.aspx file but does not display it in the browsers address bar. My boss wants it so that when people click on a link that has http://domain.com/index.aspx, they also see the URL http://domain.com/.
URLRewriting seems to do the opposite of what I want. I looked at the function:
void HttpContext.RewritePath(string path)
in ASP.NET but it doesn't do what I want. I am now thinking that an ISAPI module will need to be installed. Or am I completely wrong and that this is a browser issue? Or should I remove the default page and create a Rewrite rule for the "/" url so that it processes some.aspx, and have the index.aspx page simply do a 302 redirection to the "/" url?
URLRewriting seems to do the opposite of what I want. I looked at the function:
void HttpContext.RewritePath(string path)
in ASP.NET but it doesn't do what I want. I am now thinking that an ISAPI module will need to be installed. Or am I completely wrong and that this is a browser issue? Or should I remove the default page and create a Rewrite rule for the "/" url so that it processes some.aspx, and have the index.aspx page simply do a 302 redirection to the "/" url?