-
MODX Staff
- 10,725 Posts
I am redesigning a site that used URLS such as /Capitalized-Alias.htm, and it is hosted on an Apache 1.3.x installation. I want to be able to handle these mixed case URI's as well as all lowercase versions. In Apache 2 I believe this is possible and seems to work, but I cannot find a solution with Apache 1.3.x. So far the best possibility has been to use a JavaScript on my error page that retries the request after forcing the URL to lowercase, but I'd like to find a way to handle this in the core. Has anyone in this group attempted anything similar?
-
MODX Staff
- 10,725 Posts
nevermind, I simply add a strtolower inside the cleanDocumentIdentifier() function and everything works like a charm... :wink: