Blame view

.htaccess 206 Bytes
b80175387   Андрей Ларионов   Начальный проект ...
1
2
3
4
5
6
7
  <IfModule mod_rewrite.c>
      RewriteEngine on
      RewriteRule ^(.*)$ public/$1 [L]
      RewriteCond %{REQUEST_FILENAME} !-d
      RewriteCond %{REQUEST_FILENAME} !-f
      RewriteRule ^ index.php [L]
  </IfModule>