Skip to content

Instantly share code, notes, and snippets.

@mrl22
Created December 13, 2018 20:35
Show Gist options
  • Save mrl22/ff59e7aa3a1483d85923123c34f51b6b to your computer and use it in GitHub Desktop.
Save mrl22/ff59e7aa3a1483d85923123c34f51b6b to your computer and use it in GitHub Desktop.
Maintenance Page
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !^0\.0\.0\.0
RewriteCond %{REQUEST_URI} !/maintenance.html$ [NC]
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif) [NC]
RewriteRule .* /maintenance.html [R=302,L]
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment