首頁  >  文章  >  後端開發  >  nginx 修改網站根目錄

nginx 修改網站根目錄

WBOY
WBOY原創
2016-07-29 08:56:131126瀏覽
預設網站根目錄為/usr/local/nginx/html,要將它改成/home/www

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

將其中的

.  location / {   

  

       root    index  index.php index.html index.htm;

 

              

 location / {

      

    

  

  

  

 index  index.php index.html index.htm; 

接著再將

location ~ .php$ {       

  

 html;           

 

         fastcgi_index  

index.php;

 

  

  

  

  

   fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;            include  

  

    fastcgi_params;       

 }

改為location ~ .php$ { 

  

        /home/www;       

  

   fastcgi_pass                

 fastcgi_index  

  fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name; 

    

  

fastcgi_params;

 

  

    } 以上就介紹了nginx 修改網站根目錄,包括了方面的內容,希望對PHP教程有興趣的朋友有幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn