Skip to content

Instantly share code, notes, and snippets.

@cupracer
Created April 10, 2020 07:59
Show Gist options
  • Save cupracer/d1752f535b8cacad4eac152199a9754b to your computer and use it in GitHub Desktop.
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)
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