P pauloray New Member Jun 14, 2021 #1 Jun 14, 2021 #1 We have a new Litespeed server with Cpanel. How can I convert uppercase letters in the URL to lowercase?
We have a new Litespeed server with Cpanel. How can I convert uppercase letters in the URL to lowercase?
N NiteWave Administrator Jun 14, 2021 #2 Jun 14, 2021 #2 you can use rewritemap : https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html#rewritemap this is an apache function and supported by both apache and litespeed. example code: https://httpd.apache.org/docs/2.4/rewrite/rewritemap.html#int Code: RewriteMap lc int:tolower RewriteRule "(.*)" "${lc:$1}" please note: RewriteMap works in server config, virtual host, but not in .htaccess
you can use rewritemap : https://httpd.apache.org/docs/2.4/mod/mod_rewrite.html#rewritemap this is an apache function and supported by both apache and litespeed. example code: https://httpd.apache.org/docs/2.4/rewrite/rewritemap.html#int Code: RewriteMap lc int:tolower RewriteRule "(.*)" "${lc:$1}" please note: RewriteMap works in server config, virtual host, but not in .htaccess