-
-
Save BenWoodford/931560a89c99f6c813b0cc5eaabd7c5d to your computer and use it in GitHub Desktop.
.htaccess for 503 maintenance page
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
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