💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
**location ~ \\.php(.\*)$** ## **这个写法结合pathInfo才可以** **正则踩坑** php 错误 ~~~ ; 开启错误显示 display_errors = On ~~~ ``` server { listen 80; server_name www.niushop.dist; root /project/new_platform/niushop; index index.html index.htm index.php; charset utf-8; access_log logs/www.niushop.dist-access.log; error_log logs/www.niushop.dist-error.log; location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php/$1 last; break; } } location ~ \.php(.*)$ { include php74.conf; } } ``` **PATH_INFO** ~~~ location ~ \.php$ { fastcgi_pass unix:/var/run/php/php7.4-fpm.sock; # 根据您的 PHP 版本和配置进行修改 fastcgi_index index.php; include fastcgi_params; fastcgi_read_timeout 300; # 设置为 5 分钟,以秒为单位 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; } ~~~ **nginx php 配置连接时长** #keepalive_timeout 0; keepalive_timeout 300; fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fastcgi_read_timeout 300;