location ~ \.php(.*)$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_split_path_info ^((?U).+\.php)(/?.+)$;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
include fastcgi_params;
}

相关文章:

  • 2021-12-01
  • 2022-12-23
  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2021-10-12
  • 2021-11-17
猜你喜欢
  • 2022-03-11
  • 2020-07-18
  • 2022-12-23
  • 2021-12-05
  • 2021-07-28
  • 2021-11-28
  • 2021-11-22
相关资源
相似解决方案