simon-fraser/Site-Maintenance-Boilerplate/master/.htaccess - Htaccess File

simon-fraser/Site-Maintenance-Boilerplate/master/.htaccess

RewriteEngine On
RewriteBase /

# You can set your IP here to Avoid the maintenance page
RewriteCond %{REMOTE_ADDR} !^11.111.111.111

RewriteCond %{REQUEST_URI} !^/maintenance.html$ [AND]
RewriteCond %{REQUEST_URI} !.(css|js|gif|png|jpg|jpeg|ico)$ # Will not affect files with these extensions
RewriteRule ^(.*)$ maintenance.html [R=307,L]

On Github License

Files

Download PDF of Htaccess file
REMOTE_ADDR, REQUEST_URI

Comments

Apache