User Tools

Site Tools


wiki:nginx_redirect_rewrites

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
wiki:nginx_redirect_rewrites [2022/09/23 13:28] – add Redirect based on browser's Accept-Language header that is sent antisawiki:nginx_redirect_rewrites [2023/01/11 13:43] (current) – add Rewrite uppercase to lowercase antisa
Line 83: Line 83:
 } }
 </code> </code>
 +
 +===== Rewrite uppercase to lowercase =====
 +Install perl module first:
 +
 +  apt install nginx-module-perl
 +
 +Enable it in //nginx.conf// near top of file, outside of any section
 +  load_module "modules/ngx_http_perl_module.so";
 +
 +Create perl rewrite function inside //http// section:
 +<code nginx>
 +# Include the perl module
 +perl_modules perl/lib;
 +
 +# rewrite function from upper to lowercase
 +perl_set $uri_lowercase 'sub {
 +  my $r = shift;
 +  my $uri = $r->uri;
 +  $uri = lc($uri);
 +  return $uri;
 +}';
 +</code>
 +
 +Use it in site configuration, maybe put it at end of file to not interfere with other routes (test this for your own setup)
 +<code nginx>
 +# if the path contains uppercase characters,
 +# rewrite to lowercase
 +location ~ [A-Z] {
 +   rewrite ^(.*)$ $scheme://$host$uri_lowercase;
 +}
 +</code>
 +
 ====== Tested on ====== ====== Tested on ======
   * Debian 11   * Debian 11
wiki/nginx_redirect_rewrites.1663939730.txt.gz · Last modified: 2022/09/23 13:28 by antisa

Except where otherwise noted, content on this wiki is licensed under the following license: CC0 1.0 Universal
CC0 1.0 Universal Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki