nginx fastcgi_param参数问题

发布于 2022-09-11 21:47:36 字数 920 浏览 11 评论 0

server {

    listen       80;
    server_name  bug.com ;
    root   "F:/phpstudy/PHPTutorial/WWW/tp5/public";
    location / {
        index  index.html index.htm index.php;
        #autoindex  on;

if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=/$1 last;
break;

}
    }
    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;
    }

}

fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
这个是什么意思呢? $document_root 指哪里的路径 $fastcgi_script_name指哪里的路径
求大神解答

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

ˇ宁静的妩媚 2022-09-18 21:47:36

$document_root 指的是框架入口,就是你上面配置的root
$fastcgi_script_name 指的是脚本名称

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文