nginx.htaccess 148 B

12345678
  1. location ~* (runtime|application)/{
  2. return 403;
  3. }
  4. location / {
  5. if (!-e $request_filename){
  6. rewrite ^(.*)$ /index.php?s=$1 last; break;
  7. }
  8. }