Skip to content

Instantly share code, notes, and snippets.

@jawinn
Created August 15, 2013 15:28
Show Gist options
  • Save jawinn/6241766 to your computer and use it in GitHub Desktop.
Save jawinn/6241766 to your computer and use it in GitHub Desktop.
.htaccess - redirect pages that are not the home page
# AUTO 301 REDIRECT PAGES THAT ARE NOT THE HOME PAGE
RewriteCond %{REQUEST_URI} !^/index.php$ [OR]
RewriteCond %{REQUEST_URI} !^/$
RewriteRule ^(.*)$ http://www.YOURDOMAIN.com/$1 [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment