nginx配置中php相对路径问题

今天研究了一下windows下的nginx+mysql+php一键安装包,终于琢磨出来在nginx配置中php的相对路径设置的方法。

nginx.conf配置中设置网站相对路径和php相对路径方法不同,具体如下:

location / {
root   ../www;
index  index.html index.htm index.php;
}

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

看root的设置,php相对路径用一个点,网站路径用两个点。

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据