I-SAN-dev/fastbrix/master/.htaccess - Htaccess File

I-SAN-dev/fastbrix/master/.htaccess

RewriteEngine On

# Rewrite www to non-www - replace example.com by your domain
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*) http://example.com/$1 [L,R=301]

# Route all non-file calls to index.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule .* /index.php

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME

Comments

Apache