IIS10如何配置PHP

這篇文章主要介紹“IIS10如何配置PHP”的相關(guān)知識(shí),小編通過實(shí)際案例向大家展示操作過程,操作方法簡(jiǎn)單快捷,實(shí)用性強(qiáng),希望這篇“IIS10如何配置PHP”文章能幫助大家解決問題。

創(chuàng)新互聯(lián)公司專注于諸城網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠(chéng)為您提供諸城營(yíng)銷型網(wǎng)站建設(shè),諸城網(wǎng)站制作、諸城網(wǎng)頁設(shè)計(jì)、諸城網(wǎng)站官網(wǎng)定制、微信小程序定制開發(fā)服務(wù),打造諸城網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供諸城網(wǎng)站排名全網(wǎng)營(yíng)銷落地服務(wù)。

首先 安裝IIS時(shí),找到萬維網(wǎng)服務(wù)--應(yīng)用程序開發(fā)功能,以下3項(xiàng)要勾選:CGI ISAPI擴(kuò)展  IASPI篩選器

1.先安裝php

http://windows.php.net/download/

我裝是的phpstudy集成環(huán)境,用的里面的php5.2

2.配置php.ini 拷貝php.ini-development,改名為php.ini,并進(jìn)行如下修改

2.1 擴(kuò)展插件的路徑

; Directory in which the loadable extensions (modules) reside.
extension_dir ="D:\phpStudy\php52\ext"

填入自己真實(shí)的PHP解釋器地址,以及后面跟著ext文件夾,這個(gè)里面放的都是插件

2.2 設(shè)置要引入哪些插件

; Windows Extensions
; Note that ODBC support is built in, so no dll is needed for it.
; Note that many DLL files are located in the extensions/ (PHP 4) ext/ (PHP 5)
; extension folders as well as the separate PECL DLL download (PHP 5).
; Be sure to appropriately set the extension_dir directive.

extension=php_bz2.dll
extension=php_curl.dll
;extension=php_dba.dll
;extension=php_dbase.dll
;extension=php_fdf.dll
extension=php_gd2.dll
;extension=php_gettext.dll
;extension=php_gmp.dll
;extension=php_ifx.dll
;extension=php_imap.dll
;extension=php_interbase.dll
;extension=php_ldap.dll
extension=php_mbstring.dll
;extension=php_exif.dll
extension=php_mcrypt.dll
;extension=php_mhash.dll
;extension=php_mime_magic.dll
;extension=php_ming.dll
;extension=php_msql.dll
;extension=php_mssql.dll
extension=php_MySQL.dll
extension=php_mysqli.dll
;extension=php_oci8.dll
;extension=php_openssl.dll
extension=php_pdo.dll
;extension=php_pdo_firebird.dll
;extension=php_pdo_mssql.dll
extension=php_pdo_mysql.dll
;extension=php_pdo_oci.dll
;extension=php_pdo_oci8.dll
extension=php_pdo_odbc.dll
;extension=php_pdo_pgsql.dll
extension=php_pdo_sqlite.dll
;extension=php_pgsql.dll
;extension=php_pspell.dll
;extension=php_shmop.dll
;extension=php_snmp.dll
;extension=php_soap.dll
;extension=php_sockets.dll
extension=php_sqlite.dll
;extension=php_sybase_ct.dll
;extension=php_tidy.dll
;extension=php_xmlrpc.dll
;extension=php_xsl.dll
extension=php_zip.dll
;extension=php_mongo.dl
;extension=php_sqlsrv.dll
;extension=php_pdo_sqlsrv.dll
;extension=php_ibm_db2.dll
;extension=memcache.dll

2.3 設(shè)置時(shí)區(qū)

[Date]
; Defines the default timezone used by the date functions
date.timezone = PRC

改成
  date.timezone = Asia/Shanghai

2.4 啟用fastcgi

; FastCGI under IIS (on WINNT based OS) supports the ability to impersonate
; security tokens of the calling client.  This allows IIS to define the
; security context that the request runs under.  mod_fastcgi under Apache
; does not currently support this feature (03/17/2002)
; Set to 1 if running under IIS.  Default is zero.
 fastcgi.impersonate = 1;

2.5 cgi相關(guān)設(shè)置pathinfo

; cgi.fix_pathinfo provides *real* PATH_INFO/PATH_TRANSLATED support for CGI.  PHP's
; previous behaviour was to set PATH_TRANSLATED to SCRIPT_FILENAME, and to not grok
; what PATH_INFO is.  For more information on PATH_INFO, see the cgi specs.  Setting
; this to 1 will cause PHP CGI to fix it's paths to conform to the spec.  A setting
; of zero causes PHP to behave as before.  Default is 1.  You should fix your scripts
; to use SCRIPT_FILENAME rather than PATH_TRANSLATED.
 cgi.fix_pathinfo=0

2.6 cgi相關(guān)設(shè)置redirect

; cgi.force_redirect is necessary to provide security running PHP as a CGI under
; most web servers.  Left undefined, PHP turns this on by default.  You can
; turn it off here AT YOUR OWN RISK
; **You CAN safely turn this off for IIS, in fact, you MUST.**
 cgi.force_redirect = 0

IIS 官網(wǎng) https://www.iis.net 還說了開啟錯(cuò)誤日志,我沒有開啟。

Set error_log="C:php_errors.log"
This can help with troubleshooting.

這是官網(wǎng)的配置php說明
https://www.iis.net/learn/app...
微軟官方的技術(shù)資源庫(kù)中文相關(guān)文檔
https://technet.microsoft.com...

3.配置IIS,安裝IIS時(shí),以下3項(xiàng)要勾選:CGI ISAPI擴(kuò)展  IASPI篩選器

IIS10如何配置PHP

3.1 找到處理程序映射,添加模塊映射
 都點(diǎn)擊確定之后,會(huì)彈出一個(gè)警告對(duì)話框,點(diǎn)擊“是”就可以了,由于已經(jīng)添加好了,這里找到添加的模塊截的圖

IIS10如何配置PHP

IIS10如何配置PHP

IIS10如何配置PHP

3.2 找到ISPAI和CGI限制,點(diǎn)右邊的添加。這里截圖是添加好的

IIS10如何配置PHP

IIS10如何配置PHP

3.3 找到ISPAI篩選器,點(diǎn)擊右邊的添加,這里同樣是添加好的截圖

IIS10如何配置PHP

IIS10如何配置PHP

3.4 添加默認(rèn)文檔

IIS10如何配置PHP

IIS10如何配置PHP

之后新建一個(gè)站點(diǎn)用以測(cè)試,在添加的站點(diǎn)根目錄下新建index.php,輸入<?php phpinfo(); ?> 保存,接著瀏覽網(wǎng)站,會(huì)看到phpinfo信息了

IIS10如何配置PHP

IIS10如何配置PHP

關(guān)于“IIS10如何配置PHP”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識(shí),可以關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,小編每天都會(huì)為大家更新不同的知識(shí)點(diǎn)。

網(wǎng)頁標(biāo)題:IIS10如何配置PHP
文章起源:http://www.muchs.cn/article40/pgdiho.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPTGoogle、企業(yè)建站、動(dòng)態(tài)網(wǎng)站服務(wù)器托管、網(wǎng)站排名

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

搜索引擎優(yōu)化