亚洲国产第一_开心网五月色综合亚洲_日本一级特黄特色大片免费观看_久久久久久久久久免观看

Hello! 歡迎來到小浪云!


使用VPS云服務(wù)器Nginx實現(xiàn)動態(tài)和靜態(tài)頁面的分離


avatar
小浪云 2024-07-09 211


 動態(tài)頁面。

 樣例配置如下:

 #cat /usr/local/nginx/conf/nginx.conf

 ……

 server{

 listen80;

 server_namelocalhost;

 location/{

 //識別靜態(tài)頁面(除了 php外的其他所有頁面)

 roothtml;

 indexindex.html;

 }

 location~*.php${

 //識別動態(tài)頁面

 roothtml;

 fastCGI_pass127.0.0.1:9000;

 include fastCGI.conf;

 }

 }

相關(guān)閱讀