nginx 修改网站根目录

WBOY
发布: 2016-07-29 08:56:13
原创
1126 人浏览过
默认网站根目录为/usr/local/nginx/html,要将它改成/home/www

vi /usr/local/nginx/conf/nginx.conf

将其中的

        location / {

            root   html;

            index  index.php index.html index.htm;

        }

改为

        location / {

            root   /home/www;

            index  index.php index.html index.htm;

        }

然后再将

location ~ \.php$ {

            root           html;

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            include        fastcgi_params;

        }

改为

location ~ \.php$ {

            root           /home/www;

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            include        fastcgi_params;

        }

以上就介绍了nginx 修改网站根目录,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签:
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板