Skip to content

Instantly share code, notes, and snippets.

@MatteoGgl
Created April 27, 2016 13:59
Show Gist options
  • Save MatteoGgl/d4e3f567c4de8dbb8174935e58a99755 to your computer and use it in GitHub Desktop.
Save MatteoGgl/d4e3f567c4de8dbb8174935e58a99755 to your computer and use it in GitHub Desktop.
# MAINTENANCE-PAGE REDIRECT
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !^123\.456\.789\.000
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