The Apache example is incomplete. For me, I used Chrome to "download the strike page" from <a href="http://sopastrike.com/strike/" rel="nofollow">http://sopastrike.com/strike/</a> and saved it on my server as /strike.html. Then, I added the following to my .htaccess:<p><pre><code> RewriteEngine on
RewriteCond %{REQUEST_URI} !strike.html
RewriteCond %{REQUEST_URI} !^/strike_files/
RewriteRule (.*) /strike.html [R=503,L]
ErrorDocument 503 /strike.html
</code></pre>
This will trigger 503 for every page request but /strike.html and its subdirectory, also Apache will serve the strike page content for browsers in place of any status codes 200 or 302 on the original request url.