uran1980/yii2-advanced-template-custom/master/web/backend/.htaccess - Htaccess File

uran1980/yii2-advanced-template-custom/master/web/backend/.htaccess

################################################################################
#   @see http://httpd.apache.org/docs/2.2/mod/core.html#adddefaultcharset
################################################################################
AddDefaultCharset UTF-8

# Mod_Autoindex
<IfModule mod_autoindex.c>
    # Disable Indexes
    Options -Indexes
</IfModule>

# Mod_Rewrite
<IfModule mod_rewrite.c>
    RewriteEngine On

    # If a directory or a file exists, use the request directly
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    # Otherwise forward the request to index.php
    RewriteRule . index.php
</IfModule>

On Github License

Files

Download PDF of Htaccess file
REQUEST_FILENAME

Comments

Apache