Skip to content

Instantly share code, notes, and snippets.

@jaynzr
Created February 15, 2016 08:06
Show Gist options
  • Save jaynzr/1218ebbc40dc15fdb7ae to your computer and use it in GitHub Desktop.
Save jaynzr/1218ebbc40dc15fdb7ae to your computer and use it in GitHub Desktop.
nginx case insensitive path rewrite
rewrite (?i)^/path/?$ /path/ last;
rewrite (?i)^/path/(.*)$ /path/$1 last;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment