Created
April 10, 2020 07:59
-
-
Save cupracer/d1752f535b8cacad4eac152199a9754b to your computer and use it in GitHub Desktop.
Apache config to redirect all requests to a static page (status 503 - Service Unavailable)
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 | |
RewriteCond %{DOCUMENT_ROOT}/static.html -f | |
RewriteCond %{SCRIPT_FILENAME} !static.html | |
RewriteRule ^.*$ /static.html [R=503,L] | |
ErrorDocument 503 /static.html |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment