使用IIS或Apache做PHP的伺服器

來源:互聯網
上載者:User

  Aphache做伺服器:

    安裝 Apache 並進行配置使其支援 Php

  將 Apache 安裝在 d:\website\apache 目錄中。Apache 安裝過程需要輸入網站網域名稱,本地調試使用localhost即可,安裝過程很簡單,全圖形化介面,不再贅述。

  PHP解壓縮到 d:\website\php 目錄中
   然後找到 d:\website\php\php.ini-dist 檔案,將其重新命名為 php.ini,並複製到 c:\windows 目錄裡。
    再將 d:\website\php\ 目錄中的 php5ts.dll 和 libMySQL.dll 兩個檔案,一起複製到 c:\windows\system 或 c:\windows\system32 目錄中。

  編輯 d:\apache\apache2\conf\httpd.conf 檔案:
    首先找到 DocumentRoot 一行,將其後的路徑修改為 web 服務的主目錄,例如:DocumentRoot "D:/website/public_html";
    然後找到 DirectoryIndex 一行,在行末加上 index.htm index.php,例如:DirectoryIndex index.html index.html.var index.htm index.php

  為 Apache 安裝 Php:   編輯 d:\apache\conf\httpd.conf 檔案:

  找到 #LoadModule ssl_module modules/mod_ssl.so 這行,在此行後增加一行:
  LoadModule php5_module d:/website/php/php5apache2.dll

  找到 AddType application/x-gzip .gz .tgz,在此行後增加三行:
  ScriptAlias /php/ "d:/website/php/"
  AddType application/x-httpd-php .php
  Action application/x-httpd-php "/php/php-cgi.exe"

    d:/website/php/ 是指 php 5.03 的安裝目錄路徑,請視具體情況更改。

  重新啟動 Apache 服務。

  到這裡,Apache + Php 環境基本已經配置完成,在 web 根目錄(以上例即 d:\website\public_html\ 目錄)中,用記事本建立一個 phpinfo.php 檔案,其內容如下:

  <?
  echo phpinfo();
  ?>

  然後,在瀏覽器中開啟 http://localhost/phpinfo.php ,如果看到 Php 配置輸出資訊,就說明配置正常。

IIS上運行PHP
1.
預設網站--屬性--主目錄--配置--添加
添加應用程式副檔名映射:
可執行檔:C:\php\php.exe %s %s
副檔名:.php
選定:指令碼引擎、檢查檔案是否存在
2.
預設網站--屬性--主目錄--文檔-添加
index.php


或者:
預設網站--屬性--主目錄--配置--添加
C:\php\php5isapi.dll
.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.