mishantrop/quasi_cms/master/.htaccess - Htaccess File

mishantrop/quasi_cms/master/.htaccess

RewriteEngine On
RewriteBase /

# From www to non-www
RewriteCond %{HTTP_HOST} ^www.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

# Friendly URLs
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA,NC]

# Additional
# php_value date.timezone "Europe/Moscow"

On Github License

Files

Download PDF of Htaccess file
HTTP_HOST, REQUEST_FILENAME

Comments

Apache