Aphache do server:
Install Apache and configure it to support PHP
Install Apache in the D:\website\apache directory. Apache installation process needs to enter the site domain name, local debugging use localhost can, installation process is very simple, full graphical interface, no longer repeat.
PHP uncompressed into the d:\website\php directory
Then locate the D:\website\php\php.ini-dist file, rename it to PHP.ini, and copy it to the C:\Windows directory.
The Php5ts.dll and libMySQL.dll two files in the D:\website\php\ directory are then copied together into the C:\Windows\System or C:\Windows\System32 directory.
Edit d:\apache\apache2\conf\httpd.conf File:
First find the DocumentRoot row, then modify the path to the Web service's home directory, for example: DocumentRoot "d:/website/public_html";
Then find the DirectoryIndex row, plus index.htm index.php at the end of the line, for example: DirectoryIndex index.html index.html.var index.htm
Install PHP for Apache: Edit d:\apache\conf\httpd.conf file:
Find #LoadModule Ssl_module modules/mod_ssl.so This line, add a row after this row:
LoadModule Php5_module D:/website/php/php5apache2.dll
Find AddType application/x-gzip gz. tgz, add three lines after this line:
scriptalias/php/"d:/website/php/"
AddType application/x-httpd-php. php
Action application/x-httpd-php "/php/php-cgi.exe"
d:/website/php/refers to the installation directory path for PHP 5.03, please change it as appropriate.
Restart the Apache service.
Here, the Apache + PHP environment has basically been configured to complete, in the Web root directory (the above example is the D:\website\public_html\ directory), with Notepad to create a phpinfo.php file, which reads as follows:
?
Echo Phpinfo ();
?>
Then, open http://localhost/phpinfo.php in the browser, if you see the PHP configuration output information, the configuration is normal.
Running PHP on IIS
1.
Default Web Site--Properties--Home Directory--Configuration--add
To add an application extension mapping:
Executable file: C:\php\php.exe%s%s
Name extension:. php
Select: Script engine, check file exists
2.
Default Web Site--Properties--Home Directory--document--add
index.php
Or:
Default Web Site--Properties--Home Directory--Configuration--add
C:\php\php5isapi.dll
. Php