1OOSUR/html5demos-1/master/.htaccess - Htaccess File

1OOSUR/html5demos-1/master/.htaccess

<IfModule mod_rewrite.c>
Options +FollowSymLinks +ExecCGI
RewriteEngine On
RewriteBase /

# no-www.org
RewriteCond %{HTTP_HOST} ^www.html5demos.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^www.html5demo.com$ [NC,OR]
RewriteCond %{HTTP_HOST} ^html5demo.com$ [NC]
RewriteRule ^(.*)$ http://html5demos.com/$1 [R=301,L]

# RewriteCond %{HTTP_REFERER} ^$ [OR]
# RewriteCond %{HTTP_REFERER} !^http://(www.|offline.)?html5demos.com/.*$
# RewriteRule .(gif|jpg|swf|flv|png|ogv|mp4|webm|js)$ [R=404,L]

# if the file or directory does exist
RewriteCond %{REQUEST_FILENAME} -d [OR]
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule .* - [L]

RewriteCond %{REQUEST_FILENAME}.html -f
RewriteRule (.*) $1.html [QSA,L]

RewriteRule ^(.*)$ page.php [QSA,L]

</IfModule>

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, HTTP_REFERER, REQUEST_FILENAME

Comments

Apache