Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
<IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^$ public/ [L] RewriteRule (.*) public/$1 [L] </IfModule>
location /public/ { index index.php; try_files $uri $uri/ /public/index.php?$args; }
location / { index index.php; try_files $uri $uri/ /index.php?$args; }