Skip to content

Instantly share code, notes, and snippets.

@tarciozemel
Last active December 22, 2015 09:38
Show Gist options
  • Save tarciozemel/6452825 to your computer and use it in GitHub Desktop.
Save tarciozemel/6452825 to your computer and use it in GitHub Desktop.
htaccess: modo de manutenção
# MAINTENANCE-PAGE REDIRECT
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REMOTE_ADDR} !^123.456.789.000 # whatismyip.com
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