<IfModule mod_rewrite.c>
RewriteEngine On
# Route all static .html requests in this folder through the protector script
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule ^(.*\.html)$ html_protector.php?file=$1 [L,QSA]
</IfModule>
