Forum Moderators: open
I think there's some special module you can install and use in Apache (similar to a mod_rewrite) that causes Apache to not care about case sensitivity.
The actual domain name is case-insensitive on any machine: example.com = EXAMPLE.COM = ExAmPlE.COM
Only the parts that reference the local file system matter.
A reason that comes to mind to use mixed case for a domain name is so that it is easier to read when it is written out visibly for the user
<a href="http://mydomainisgreat.com/">http://MyDomainIsGreat.com/</a>
Reasons that come to mind not to mix case on the domain name are
- it's easier if everything is one case (preferably lower) in your file system and file names and it's easier still if you just stick to that for domain names too.
- you will get better compression if everything is the same case and you use compression.
Tom