Skip to content

Instantly share code, notes, and snippets.

@mabroor
Forked from donnykurnia/.htaccess
Created November 1, 2015 09:54
Show Gist options
  • Save mabroor/df43e5adb5edd3246411 to your computer and use it in GitHub Desktop.
Save mabroor/df43e5adb5edd3246411 to your computer and use it in GitHub Desktop.
.htaccess for 503 maintenance page
ErrorDocument 503 /index.html
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /index.html [R=503,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment