5

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

Nicolas Dufour
  • 203
  • 1
  • 5

1 Answers1

9

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]

sumerz
  • 1,346
  • 7
  • 4