搭建 window + nginx + php 開發環境


一、下載 windows Mainline version  nginx,按官方文檔安裝

二、下載  php7.3 並解壓到工作目錄

三、以管理員身份打開 cmd,進入 php 目錄,輸入如下命令,!!! 電腦不關機,此cmd窗口不關閉 !!! 

E:\php7.3>php-cgi.exe -b 127.0.0.1:9000

 

四、配置 nginx(復制如下配置覆蓋原配置)

# 支持 PHP_INFO
location / {
    root   E:/Apache/htdocs/site/;
    index  index.php index.html index.htm;
    if (!-e $request_filename) {
        rewrite  ^/(.*)$  /index.php/$1  last;
        break;
    }
}

# 解析 php 文件
location ~ \.php {
    root           E:/Apache/htdocs/site/;
    fastcgi_pass   127.0.0.1:9000;
    fastcgi_index  index.php;
    fastcgi_param  SCRIPT_FILENAME  $document_root/$fastcgi_script_name;
    include        fastcgi_params;
}

 

五、啟動 nginx

E:\nginx-1.17.9>nginx -s stop      fast shutdown
E:\nginx-1.17.9>nginx -s quit      graceful shutdown
E:\nginx-1.17.9>nginx -s reload    changing configuration, starting new worker processes with a new configuration, graceful shutdown of old worker processes
E:\nginx-1.17.9>nginx -s reopen    re-opening log files

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM