国产三级农村妇女在线,国产精品毛片a∨一区二区三区,国产乱子伦视频大全,国产精品色拉拉,国产欧美日韩一区二区三区,

首頁 > 技術(shù) > Linux

phpstudy2020搭建站點(diǎn)的實(shí)現(xiàn)示例

Linux 2022-11-28 12:35:04

1.下載Phpstudy(到官網(wǎng)下載),并安裝后,啟動(dòng)phpstudy

phpstudy2020搭建站點(diǎn)的實(shí)現(xiàn)示例

2. 進(jìn)入c:windowssystem32driversetc路徑下的hosts文件,進(jìn)行如下配置

  1. 127.0.0.1 xxxxadmin.com
  2. 127.0.0.1 xxxxpartneradmin.com
  3. 127.0.0.1 xxxxboadmin.com
  4. 127.0.0.1 xxxxbadmin.com

3.在面板的網(wǎng)站下,點(diǎn)擊創(chuàng)建網(wǎng)站,如圖所示

phpstudy2020搭建站點(diǎn)的實(shí)現(xiàn)示例

4.修改nginx文件配置

phpstudy2020搭建站點(diǎn)的實(shí)現(xiàn)示例

找到相對應(yīng)的文件,修改如下(主要增加nginx環(huán)境配置偽靜態(tài)去掉index.php)

  1. server {
  2. listen 80;
  3. server_name newsaiboweb.com;
  4. root "E:/phpstudy_pro/WWW/new-saibo-web/public";
  5. location / {
  6. index index.php index.html error/index.html;
  7. if (!-e $request_filename){
  8. rewrite ^(.*)$ /index.php?s=$1 last;
  9. break;
  10. }
  11. error_page 400 /error/400.html;
  12. error_page 403 /error/403.html;
  13. error_page 404 /error/404.html;
  14. error_page 500 /error/500.html;
  15. error_page 501 /error/501.html;
  16. error_page 502 /error/502.html;
  17. error_page 503 /error/503.html;
  18. error_page 504 /error/504.html;
  19. error_page 505 /error/505.html;
  20. error_page 506 /error/506.html;
  21. error_page 507 /error/507.html;
  22. error_page 509 /error/509.html;
  23. error_page 510 /error/510.html;
  24. autoindex off;
  25. }
  26. location ~ .php(.*)$ {
  27. fastcgi_pass 127.0.0.1:9000;
  28. fastcgi_index index.php;
  29. fastcgi_split_path_info ^((?U).+.php)(/?.+)$;
  30. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  31. fastcgi_param PATH_INFO $fastcgi_path_info;
  32. fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
  33. include fastcgi_params;
  34. }
  35. }

5.到此結(jié)束了,本地跑下試試!

到此這篇關(guān)于phpstudy2020搭建站點(diǎn)的實(shí)現(xiàn)示例的文章就介紹到這了,更多相關(guān)phpstudy2020搭建站點(diǎn)內(nèi)容請搜索服務(wù)器之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持服務(wù)器之家!

原文鏈接:https://blog.csdn.net/huha666/article/details/106943938/

TAg

加載中~

本網(wǎng)站LOGO受版權(quán)及商標(biāo)保護(hù),版權(quán)登記號:國作登字-2022-F-10126915,未經(jīng)湖南木星科技官方許可,嚴(yán)禁使用。
Copyright ? 2012-2022 湖南木星科技有限公司(木星網(wǎng))版權(quán)所有
轉(zhuǎn)載內(nèi)容版權(quán)歸作者及來源網(wǎng)站所有,本站原創(chuàng)內(nèi)容轉(zhuǎn)載請注明來源,商業(yè)媒體及紙媒請先聯(lián)系:aishangyiwan@126.com

工信部備案號:湘ICP備19012813號-5