JSbenchOrg/client/master/.htaccess - Htaccess File

JSbenchOrg/client/master/.htaccess

DirectoryIndex index.html
<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteBase /

    #RewriteCond %{HTTP_HOST} ^www.jsbench.org$ [NC]
    #RewriteRule ^(.*)$ http://jsbench.org/$1 [R=302,L,QSA]

    #RewriteCond %{HTTP_HOST} ^jsbench.org$ [NC]
    RewriteCond %{REQUEST_FILENAME} !-f [NC]
    RewriteCond %{REQUEST_FILENAME} !-d [NC]
    RewriteRule ^(.*)$ "index.html" [QSA,L]
</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME

Comments

Apache