Skip to content

Instantly share code, notes, and snippets.

@ethicka
Last active March 21, 2018 14:02
Show Gist options
  • Save ethicka/8bdc7e250f62595f055e to your computer and use it in GitHub Desktop.
Save ethicka/8bdc7e250f62595f055e to your computer and use it in GitHub Desktop.
.htaccess redirect to homepage
# Redirect to homepage
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .? http://example.com/ [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment