site maintenance

temporarily redirecting all traffic except images to static page

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>

Syndicate content