Skip to content

Instantly share code, notes, and snippets.

@CatEntangler
Forked from donnykurnia/.htaccess
Last active June 7, 2016 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save CatEntangler/58f6ff4b70589f4efc7e to your computer and use it in GitHub Desktop.
Save CatEntangler/58f6ff4b70589f4efc7e to your computer and use it in GitHub Desktop.
Snipped for a maintenance mode setup in .htaccess
ErrorDocument 503 /maintenance.html
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* /maintenance.html [R=503,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment