Htaccess File

logs12/blog/master/web/.htaccess

REQUEST_FILENAME
#Mod_Autoindex
<IfModule mod_autoindex.c>
    #Запрещаем просмотр содержимого папок
    Options -Indexes
</IfModule>

# Mod_Rewrite
<IfModule mod_rewrite.c>
    Options +FollowSymlinks
    #включаем mod_rewrite
    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>
Exit mobile version