Share
ShareSidebar
2011-10-22 01:47:00 +0

redirect to Maintenance Page

How to redirect the user to a Maintenance Page?

Rate this post

You must be registered to vote first

Comments

adam_g
adam_g 2011-10-22 02:03:30

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.

+0

Comment