nginx.htaccess 180 B

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