first commit

This commit is contained in:
king199025
2018-10-11 11:15:09 +03:00
commit 9e8e98c379
230 changed files with 12117 additions and 0 deletions

19
.htaccess Normal file
View File

@ -0,0 +1,19 @@
php_value date.timezone Europe/Moscow
AddDefaultCharset UTF-8
# Mod_Autoindex
<IfModule mod_autoindex.c>
# Запрещаем просмотр содержимого папок
Options -Indexes
</IfModule>
# Mod_Rewrite
<IfModule mod_rewrite.c>
Options +SymLinksIfOwnerMatch
# Включаем mod_rewrite
RewriteEngine On
IndexIgnore */*
# Перенаправляем administrator на входной скрипт админки
RewriteRule ^secure(.*)?$ /backend/web/$1 [L,PT]
# Перенаправляем все запросы на входной скрипт
RewriteRule ^([^/].*)?$ /frontend/web/$1
</IfModule>