Skip to content

Instantly share code, notes, and snippets.

@brendonexus
Forked from mrl22/.htaccess
Created December 13, 2018 20:35
Show Gist options
  • Save brendonexus/8991cde0768ca2ea96059b4c156631a7 to your computer and use it in GitHub Desktop.
Save brendonexus/8991cde0768ca2ea96059b4c156631a7 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