windows 下apache 以fastcgi形式運行php

來源:互聯網
上載者:User

標籤:apache   xampp   fastcgi   

以xampp為例講解,步驟如下:

1:下載對應的mod_fastcgi ,下載參考網站:http://www.apachelounge.com/download/VC11/

2:拷貝mod_fastcgi到apache安裝目錄modules下面,目錄下面都是mod 打頭的.so檔案

3:編輯httpd.conf,最後面加入如下:

LoadModule fcgid_module modules/mod_fcgid.so  

#FcgidInitialEnv PHPRC        "c:/xampp/php" 
<IfModule fcgid_module>
    FcgidIOTimeout 60
FcgidConnectTimeout 30
FcgidMaxProcesses 8
FcgidOutputBufferSize 64
ProcessLifeTime 240
FcgidMaxRequestsPerProcess 500
FcgidMinProcessesPerClass 0


    Options ExecCGI
    AddHandler fcgid-script  .php 
    FcgidWrapper "C:/xampp/php/php-cgi.exe" .php


</IfModule>


4:虛擬機器主機設定檔

<VirtualHost *:80>
    ServerAdmin [email protected]
    DocumentRoot "d:/mywork/www"
 
    ServerName test.hdjr.com
    <Directory "d:/mywork/www">   // 這裡是項目的目錄
           Options Indexes FollowSymLinks Includes ExecCGI
           AllowOverride All
           Order allow,deny
           Allow from 127.0.0.1
   </Directory>
</VirtualHost>

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

windows 下apache 以fastcgi形式運行php

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.