Ilya91/yii/master/backend/web/.htaccess - Htaccess File

Ilya91/yii/master/backend/web/.htaccess

# Disable magic quotes
php_flag magic_quotes_gpc 0
php_flag magic_quotes_runtime 0

# Turn on URL rewriting
RewriteEngine On

# Installation directory
RewriteBase /

# Allow any files or directories that exist to be displayed directly
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l

# Rewrite all other URLs to index.php/URL
RewriteRule ^(.*)$ index.php [QSA]

AddDefaultCharset UTF-8

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache