Posted By

IvoTrompert on 07/30/10


Tagged

htaccess


Versions (?)

Redirect to maintenance page


 / Published in: Apache
 

URL: http://perishablepress.com/

This code will redirect all requests to a maintenance page

  1. # MAINTENANCE-PAGE REDIRECT
  2. RewriteEngine on
  3. RewriteCond %{REMOTE_ADDR} !^123\.456\.789\.000
  4. RewriteCond %{REQUEST_URI} !/maintenance.html$ [NC]
  5. RewriteRule .* /maintenance.html [R=302,L]

Report this snippet  

You need to login to post a comment.