决定用Nginx来试试magento,但是配置过程出现如题错误,最终我的解决方案是:
终端输入sudo gedit /etc/nginx/sites-available/default
找到下面代码:
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
location ~ /.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name;
#include fastcgi_params;
}
确保/var/www/nginx-default是你的网站根目录,网上的方法不宜,我注释掉fastcgi_params就可以正常运行。