Created
October 31, 2013 15:37
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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