vote up 1 vote down star

I've noticed that a lot of the popular sites do a good job in hiding their file extensions.

I guess with the MVC concept, you're really not working with files but more so with views.

I get that, but what are other motivations?

flag

74% accept rate

5 Answers

vote up 2 vote down

Because Cool URLs Don't Change. So if there's anything in your URL that is tied to your current technology stack, hide or eliminate it, so that when you change your technology stack, you don't have to change your URLs. Changing your URL may also cause you to lose ranking in search engines.

Push things that may change out of your URLs, aggressively.

link|flag
vote up 2 vote down
link|flag
vote up 1 vote down

One reason is security, if someone is trying to hack your site and they can see the file extension they know straight away what the underlying technology is and therefore any known security holes in that technology. Note there are other ways of them finding this out though.

link|flag
1  
Hiding the extension does very little to improve security. – ceejayoz Nov 4 at 16:53
Hence the note at the end! – RMcLeod Nov 4 at 16:57
vote up 4 vote down

Exposing file extensions can be a huge maintenance headache if you ever switch / upgrade technologies on your website. I can remember quite a few headaches when moving from Classic ASP to .NET and having a lot of .asp links both internally and exposed to search engines that needed to be changed to .aspx.

link|flag
Another solution to that problem would be to not use ASP :P – Ben S Nov 4 at 16:54
And in 10 years, maybe someone will be posting on FutureStackOverflow saying the same thing about ASP.NET :) (really some people already may be when you consider ASP.NET MVC) – Ryan Brunner Nov 4 at 16:56
vote up 4 vote down

Pretty URLs people can remember.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.