解決nginx下不能require根目錄之外的文件

咱們常規的作法是將統一入口文件、css、js這些放在網站根木,其餘php文件放到根目錄外部,這個時候nginx訪問是require不到的,須要設定一下php

一、vi  /usr/local/nginx/conf/nginx.confcss

在http下添加nginx

include fastcgi.conf

:wq保存bash

二、vi /usr/local/nginx/conf/fastcgi.conf網站

找到下面的這句ui

fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/";

修改成(假定你要包含的目錄是/home/wwwroot/default)blog

fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/:/tmp/:/proc/:/home/wwwroot/default/";
相關文章
相關標籤/搜索