首页 > 解决方案 > 在 Windows 上通过 NGINX 在 phpMyAdmin 上出现 403 Forbidden 错误消息,我该如何解决?

问题描述

我遇到 403 错误:尝试phpMyAdmin通过NGINX.

PHP脚本传递给FastCGI正在监听的服务器127.0.0.1:9000

    location ~ \.php$ {
        root           html;
        fastcgi_pass   127.0.0.1:9000;
        fastcgi_index  index.php;
        fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;
        include        fastcgi_params;
    }

我究竟做错了什么?是的,phpMyAdmin文件夹在NGINX HTML文件夹中。

标签: phpmyadmin

解决方案


推荐阅读