Skip to content

Instantly share code, notes, and snippets.

@blainerobison
Created March 30, 2016 18:03
Show Gist options
  • Save blainerobison/f5aa2656a63e5ddc8b35fc5b97fbe7c9 to your computer and use it in GitHub Desktop.
Save blainerobison/f5aa2656a63e5ddc8b35fc5b97fbe7c9 to your computer and use it in GitHub Desktop.
Redirect / Rewrite Rules
# Rewrite url with or without trailing slash, case insensitive
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^path/?$ /new/path/ [NC,L,R=301]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment