This may be a bizarre question - and it may be a duplicate. I wasn't sure how to search for an an existing answer, so if this is a duplicate, I apologize.
We have a request from a client to have their site redirect visitors so their browser displays the default page in the url.
So instead of doing this:
they want it to display:
http://www.domain.com/default.aspx
Is there a setting in IIS 6 that can be applied that would allow this to happen?
This question http://stackoverflow.com/questions/1010727/hiding-default-aspx-from-the-url is asking the opposite... how to remove the default.aspx. The answer there was to add a 301 redirect in the default.aspx code. Would that be the best answer here as well?
If so, that would fix the /default.aspx issue. However, I think the client may ask us to do this for all subfolders as well. Will we just need to add 301 redirects in the code wherever this is needed?
Or maybe we need to look into using a tool like this - http://www.helicontech.com/ where we can just use .htaccess files to do whatever 301 redirects we need.
Thanks for any input!
-- edit --
Just to be clear, I do know HOW to search for an existing question, I just wasn't sure what to search for in this case.