首先進入nginx的配置檔案nginx.conf;1 #相當於在http模組再新增一個server模組2 server {3 #監聽繫結80埠4 listen 80;5 #下面這個是域名,多個域名用空格隔開6 server_name
www.a.com
首先進入nginx的配置檔案nginx.conf;1 #相當於在http模組再新增一個server模組2 server {3 #監聽繫結80埠4 listen 80;5 #下面這個是域名,多個域名用空格隔開6 server_name
www.a.com
bb.com;7 #本網站的根路徑8 root /絕對路徑;9 #下面是預設首頁10 location / {11 index index.html index.php;12 }13 #下面是針對本站所有.php檔案進行處理的配置14 location ~ \.php{15 #載入fastcgi 一種處理方式16 include fastcgi_params;17 #fastcgi的引數 指定檔案路徑及引數,否則會有404或是file not find 提示18 fastcgi_param SCRIPT_FILENAME $document_root/$fastcgi_script_name;19 #fastcgi的服務資訊 ip:埠20 fastcgi_pass 127.0.0.1:9000;21 #fastcgi預設首頁22 fastcgi_index index.php;23 }24 }