Skip to content

Instantly share code, notes, and snippets.

@ethangardner
Created June 12, 2017 15:08
Show Gist options
  • Save ethangardner/b43f929b4d168a397771f3b1e9e24bc8 to your computer and use it in GitHub Desktop.
Save ethangardner/b43f929b4d168a397771f3b1e9e24bc8 to your computer and use it in GitHub Desktop.
Redirect folder to new location
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^old-dir/?(.*)$ http://example.com/$1 [L,NC,R=301]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment