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