I need to convert the url
www.test.com/Test/My-address-Is-This to www.test.com/test/my-address-is-this.
I don't want to use perl script.
I need to convert the url
www.test.com/Test/My-address-Is-This to www.test.com/test/my-address-is-this.
I don't want to use perl script.
You can use nginx/LUA :
http { ... server { ... location ~ [A-Z] { rewrite_by_lua 'ngx.exec(string.lower(ngx.var.uri))'; } ...
Or
http { ... server { ... set_by_lua $uri_lowercase "return string.lower(ngx.var.uri)"; location ~ [A-Z] { try_files $uri $uri/ $uri_lowercase $uri_lowercase/ =404; } ...