/ Published in: Apache
URL: http://perishablepress.com/
This code will redirect all requests to a maintenance page
Expand |
Embed | Plain Text
# MAINTENANCE-PAGE REDIRECT RewriteEngine on RewriteCond %{REMOTE_ADDR} !^123\.456\.789\.000 RewriteCond %{REQUEST_URI} !/maintenance.html$ [NC] RewriteRule .* /maintenance.html [R=302,L]
You need to login to post a comment.
