nginx.htaccess 222 B

12345678
  1. location / {
  2. index index.html index.htm index.php;
  3. if (!-e $request_filename) {
  4. rewrite ^(.*)$ /index.php/$1 last;
  5. break;
  6. }
  7. #autoindex on;
  8. }