日期:2014-05-17  浏览次数:20389 次

window下nginx虚拟主机不能解析php

本地window7配置nginx 1.011虚拟主机不能解析php问题,导致:no input file specified

?

?

nginx.conf中http{}增加:

?

	server {  
		listen          80;  
		server_name     bbc060;  
		location / {
            root   E:\bbc060;
            index  index.html index.htm index.php;
			autoindex on;
        }
		location ~ \.php$ {
           #root           D:\test;
           fastcgi_pass   127.0.0.1:9000;
           fastcgi_index  index.php;
           fastcgi_param  SCRIPT_FILENAME  E:\bbc060$fastcgi_script_name;
           include        fastcgi_params;
        }
	}
?