Redirect all traffice to a single page with .htaccess


RewriteEngine on
RewriteCond %{REQUEST_URI} !/closed.html$ [NC]
RewriteCond %{REQUEST_URI} !\.(jpe?g?|png|gif) [NC]
RewriteRule .* /closed.html [R=302,L]

Comments are closed.