Forum Moderators: phranque
http://www.example.com/hello.php
the same as
http://www.example.com/Hello.php
or
http://www.example.com/HeLlo.php
You get the point. Any idea? Been looking everywhere.
As g1smd says, use a 301 redirect from the mis-cased URL to the proper (single) URL. One object (page, image, script, etc.) on the Web should be accessible by one and only one URL.
This includes www.example.com versus example.com, example.com/ versus example.com/index.php, and example.com/Page versus example.com/page -- to start. :)
You can do case-conversion with mod_rewrite in .htaccess, but it is horribly-inefficient and slow.
Jim