nginx.htaccess 206 B

123456789
  1. location / {
  2. index index.php index.html error/index.html;
  3. autoindex off;
  4. try_files $uri $uri/ /index.php$is_args$args;
  5. }
  6. location /web {
  7. try_files $uri $uri/ /web/index.php$is_args$args;
  8. }