server {
    listen 192.168.66.131:8001;
    server_name 192.168.66.131:8001;

    root E:/www/wvtuan/;

index index.php index.html;

    log_not_found off;
    access_log logs/bhunetworks-access.log;

    charset utf-8;

    location ~ /\. { deny all; }
    location = /favicon.ico { }
    location = /robots.txt { }
    location / {
         if (!-e $request_filename) {
         rewrite  ^(.*)$  /index.php?s=$1  last;
          break;
        }
        }

    location ~ \.php$ {
        fastcgi_pass 127.0.0.1:9054;
        fastcgi_index index.php;
        fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;
        include fastcgi_params;
    }

}

 

相关文章:

  • 2021-10-30
  • 2022-12-23
  • 2021-07-29
  • 2022-12-23
  • 2022-01-21
  • 2022-12-23
  • 2021-12-29
  • 2021-12-21
猜你喜欢
  • 2022-12-23
  • 2021-08-16
  • 2021-09-02
  • 2022-12-23
  • 2022-12-23
  • 2022-02-09
  • 2021-09-06
相关资源
相似解决方案