I was wondering if Crafter Engine could handle case insensitive urls such as /hello-World
would be served the same as /hello-world
?
Thank you,
Nicolas
I was wondering if Crafter Engine could handle case insensitive urls such as /hello-World
would be served the same as /hello-world
?
Thank you,
Nicolas
By default, Crafter CMS's URLs are lowercase and Crafter Engine is case sensitive.
Your best choice is to front it with Apache HTTPd with a lower-casing rewrite rule. Something like this:
RewriteEngine On
RewriteRule (.*) ${lc:$1} [PT,L]