Skip to content

Instantly share code, notes, and snippets.

@micc83
Created January 30, 2018 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save micc83/65980ceec9b0a40ffb0bd9503c4148f3 to your computer and use it in GitHub Desktop.
Save micc83/65980ceec9b0a40ffb0bd9503c4148f3 to your computer and use it in GitHub Desktop.
Maintenance mode through .htaccess
# Create file maintenance.html then
<IfModule mod_rewrite.c>
RewriteEngine on
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