.htaccess 235 B

12345678910
  1. Options +FollowSymLinks
  2. IndexIgnore */*
  3. RewriteEngine on
  4. RewriteCond %{REQUEST_URI} !^/(web)
  5. RewriteRule (.*) /web/$1
  6. RewriteCond %{REQUEST_FILENAME} !-f
  7. RewriteCond %{REQUEST_FILENAME} !-d
  8. RewriteRule . /api/web/index.php