Skip to content

Instantly share code, notes, and snippets.

@andevsoftware
Created November 17, 2015 09:37
Show Gist options
  • Save andevsoftware/79d9f94107c39c09caf0 to your computer and use it in GitHub Desktop.
Save andevsoftware/79d9f94107c39c09caf0 to your computer and use it in GitHub Desktop.
HTACCESS - Redirect public to maintenance page
# Redirect public to maintenance page
RewriteCond %{DOCUMENT_ROOT}/dist/maintenance.enable -f
RewriteCond %{REQUEST_URI} !/maintenance.html$ [NC]
RewriteRule ^ /maintenance.html [R=301,L]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment