Skip to content

Instantly share code, notes, and snippets.

@mcat
Created July 6, 2017 14:39
Show Gist options
  • Save mcat/cd55521f6830a850a8d5e1b759c4977d to your computer and use it in GitHub Desktop.
Save mcat/cd55521f6830a850a8d5e1b759c4977d to your computer and use it in GitHub Desktop.
Force Lowercase URLS on a Shared Host
RewriteCond $1 [A-Z]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /${lowercase:$1} [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment