Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I noticed that

HTTP://STACKOVERFLOW.COM/QUESTIONS/ASK

and

http://stackoverflow.com/questions/ask

both works fine - actually the previous one is converted to lowercase. I think that this makes sense for the user.

If I look at google then this url works fine:

http://www.google.com/intl/en/about/corporate/index.html 

but this one (with ABOUT) is not working:

http://www.google.com/intl/en/ABOUT/corporate/index.html 

So the question is should the url be case sensitive?

share|improve this question

3 Answers

According to W3 they should: http://www.w3.org/TR/WD-html40-970708/htmlweb.html

There may be URLs, or parts of URLs, where case doesn't matter, but identifying these may not be easy. Users should always consider that URLs are case-sensitive.

share|improve this answer
But what do you think? – Imageree Nov 4 '11 at 0:25
4  
I guess "be liberal in what you accept and conservative in what you send" (IETF speak) would be my guideline. – jldupont Nov 4 '11 at 2:19
W3 guideline is reasonable. It simply states that one shouldn't make an assumption on how the server handles the URL you are submitting. It is up to the server how to handle the request URL. Most of web servers are unix/linux and that means most of web servers are case sensitive. – cherio Apr 30 at 16:37

Depends on the hosting os. Sites that are hosted on Windows tend to be case insensitive as the underlying file system is case insensitive. Sites hosted on Unix type systems tend to be case sensitive as their underlying file systems are typically case sensitive. The host name part of the URL is always case insensitive, it's the rest of the path that varies.

share|improve this answer

URLs shouldn't be case sensitive. There is no advantage, only a LOT of disadvantages.

I don't understand why w3 is not able to think about it...

share|improve this answer
2  
reasoning about case sensitivity requires knowing the locale; you shouldn't need a locale to interpret a URI since they are machine readable – Dustin Getz Apr 16 at 16:53

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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