Quote:
|
Originally Posted by dollars5
We originally had links with no case, but during final release we just updated to ones with case. We will try to provide case-less links too very sooner.
|
Apache's mod_rewrite is your friend, two lines of code will solve your problems. Off the top of my head (untested but looks good):
Code:
RewriteEngine on
RewriteRule ^/ota/multiplay(.*)$ /OTA/multiPlay$1 [L,NC]
You might mess with the regexp a little, but it can be that simple. Anything at that point would work - "/oTa/MulTIplAY.Jad" would transform to /OTA/multiPlay.jad, for example.