How to redirect the user to a Maintenance Page?
with htaccess
Options +FollowSymlinks RewriteEngine On RewriteCond %{REQUEST_URI} !/maintenance.html$ RewriteCond %{REMOTE_HOST} !^999\.999\.999\.999 RewriteRule $ /maintenance.html [R=302,L]
Replace maintenance.html by the page you’d like to redirect your visitors, and the IP adress on line 4 by your own ip.
with htaccess
Replace maintenance.html by the page you’d like to redirect your visitors, and the IP adress on line 4 by your own ip.