Skip to content

Instantly share code, notes, and snippets.

@TomCan
Created June 16, 2021 11:21
Show Gist options
  • Save TomCan/f8b79c527778ddc67c8c3c97b5cb37e7 to your computer and use it in GitHub Desktop.
Save TomCan/f8b79c527778ddc67c8c3c97b5cb37e7 to your computer and use it in GitHub Desktop.
Rewrite to lowercase
# Apache Rewrite all requests to lowercase URLs
RewriteEngine On
RewriteMap lc int:tolower
RewriteCond %{REQUEST_URI} [A-Z]
RewriteRule (.*) ${lc:$1} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment