Tutorial on IIS+php configuration under Windows 7

黄舟
Release: 2017-06-19 08:56:37
Original
1954 people have browsed it

This article mainly introduces the IIS+php configuration tutorial under Windows 7 in detail. It has certain reference value. Interested friends can refer to it

WINDOWS 7 IIS+ PHP configuration tutorial, the specific content is as follows

Open Start-> Control Panel-> Programs and Features-> Turn Windows functions on or off

Tutorial on IIS+php configuration under Windows 7

##Check Select Internet Information Services, click the plus sign in front, and check World Wide Web Services-> Application Development Function-> CGI

Tutorial on IIS+php configuration under Windows 7##Click OK

PHP download,

installationAddress: php.net/downloads.php

Download the corresponding version as needed

Tutorial on IIS+php configuration under Windows 7

Tutorial on IIS+php configuration under Windows 7Download php-5.6.30-Win32-VC11-x64.zip

Tutorial on IIS+php configuration under Windows 7 on the C drive Create a php56 folder in the root directory, unzip it to this directory

Enter the php56 folder on the C drive, find php.ini-development, rename it to php.ini, and open it with a text

editor

Find

; extension_dir = "./"
Copy after login

Remove the previous; and replace the content in double quotes with

extension_dir = "C:/php56/ext"
Copy after login

Find

;cgi.force_redirect = 1
Copy after login

Remove; and replace it with

cgi.force_redirect = 0
Copy after login

Find

;cgi.fix_pathinfo=1
Copy after login

Remove the previous one;

Find

;fastcgi.impersonate = 1
Copy after login

Remove the previous one;

Save

Exit

Click Start, enter iis, open Internet Information Services Manager

Tutorial on IIS+php configuration under Windows 7Click on Handler Mapping, then click Add Module Mapping

Tutorial on IIS+php configuration under Windows 7Enter the following information

Tutorial on IIS+php configuration under Windows 7Enter the folder directory where iis opens port 80 by default

Tutorial on IIS+php configuration under Windows 7Create

phpinfo

.php, open it with a text editor and enter the following content

Save and exit

Enter in the browser

localhost/phpinfo.php

If you see the following content, it means the configuration is successful

The above is the detailed content of Tutorial on IIS+php configuration under Windows 7. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!