我有一个纯HTML网站。现在我必须添加一个包含PHP文件的子目录(演示)。我在我的nginx.conf文件中设置了两个位置:
server {
listen 80;
server_name mydomain.com;
access_log /mydomain.com/access.log;
location / {
root /www;
index index.html index.htm;
}
location /demo {
root /www/demo;
index /demo/index.php;
}
location ~ /demo/.*\.php$ {
root /www/demo;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /www/demo$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}现在mydomain.com工作得很好,但是当我尝试访问mydomain.com/demo/时,它不断抱怨
No input file specified.这个脚本有什么问题?我想一些路径是不正确设置像fastcgi_index:它应该是/demo/index.php?我试过不同的组合,但没有任何作品。任何帮助,将不胜感激!