How do I define a case insensitive (part of a) route?
Example:
For those using Apache you could also do this:
At this the top of your vhost file add
RewriteEngine On RewriteMap lowercase int:tolower
and in your .htaccess
RewriteCond $1 [A-Z] RewriteRule ^(.*)$ /${lowercase:$1} [R=301,L]