Skip to content

Instantly share code, notes, and snippets.

@greggles
Created October 31, 2013 15:37
Show Gist options
  • Save greggles/7251874 to your computer and use it in GitHub Desktop.
Save greggles/7251874 to your computer and use it in GitHub Desktop.
Untested, but should be better for SEO than the current 404 we're giving on all pages. 307 is "the original request was fine, but temporarily please repeat the request to a new place" http://en.wikipedia.org/wiki/List_of_HTTP_status_codes#3xx_Redirection
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !^/index\.html$
RewriteRule ^(.*)$ https://drupal.org/index.html [R=307,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment