site maintenance
temporarily redirecting all traffic except images to static page
Submitted by benl on Fri, 07/23/2010 - 13:29
Related Terms :
Here's an .htaccess file that does the trick nicely, even providing a 302 temporary redirect:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_URI} !\.(gif|jpe?g|png)$
RewriteRule !^site_maintenance\.html$ /site_maintenance.html [L,R=302]
</IfModule>