Home >Backend Development >PHP Tutorial >apache tomcat Windows PHP5 and Apache installation and configuration
1. Download the installation program
Apache can be downloaded from http://www.apache.org/dyn/closer.cgi/httpd/binaries/win32/
PHP can be downloaded from http://www.php.net.
2. Installation program
1. Apache program installation is relatively simple. What we downloaded from the website is an installation program under Windows. We can directly double-click to run it, so that we can facilitate Apache to settle on our computer. .
2. What we need to pay attention to here is that when downloading PHP, you must download the zip package instead of the Installer. Unzip the PHP package we downloaded to the root directory of the C drive, and unzip the The folder is renamed php.
Three configurations
1. It is best to ensure that php5ts.dll is available no matter which interface (CGI or SAPI) is used, so this file must be placed in the Windows path. The best location is the system directory of Windows:
c:windowssystem for Windows 9x/ME
c:winntsystem32 for Windows NT/2000 or c:winnt40system32 for Windows NT/2000 server version
c:windowssystem32 for Windows XP
2. Next The first step is to set up a valid PHP configuration file, php.ini. The compressed package includes two ini files, php.ini-dist and php.ini-recommended. It is recommended to use php.ini-recommended because this file optimizes the default settings for performance and security.
Copy the selected ini file to a directory that PHP can find and rename it to php.ini. PHP searches for php.ini in the Windows directory by default:
3 Copy the selected ini file to %WINDIR% under Windows 9x/ME/XP, usually c:windows.
Under Windows NT/2000, copy the selected ini file to %WINDIR% or %SYSTEMROOT%, usually c:winnt or c:winnt40 corresponding to the server version.
4 Settings for PHP in Apache
There are two ways to make PHP work in Apache under Windows. One is using CGI binaries and the other is using Apache module DLL. Either way, you must first stop the Apache server and then edit httpd.conf to configure Apache and PHP to work together.
If we want to use CGI binaries, then we need to insert the following instructions into Apache's httpd.conf configuration file to set up CGI binaries:
PHP is installed into Apache 2.0 in CGI mode:
ScriptAlias /php/ "c: /php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php.exe"
If we want to use PHP as a module of Apache 2.0, then we must move php4ts .dll to winnt/system32 (Windows NT/2000) or windows/system32 (Windows XP), overwriting the original file (if any), for PHP 5 this file is php5ts.dll. Then we need to insert the following two lines into httpd.conf to install our PHP as Apache's PHP-Module:
PHP is installed as a module into Apache 2.0:
; For PHP 4 do something like this:
LoadModule php4_module " c:/php/php4apache2.dll"
AddType application/x-httpd-php .php
; For PHP 5 do something like this:
LoadModule php5_module "c:/php/php5apache2.dll"
AddType application/x-httpd -php .php
After this configuration, we have installed our PHP and Apache servers. We can simply test it:
1. Test Apache:
We open the browser and enter localhost in the address bar. If the Apache page can appear, it means that our Apache can work normally.
2. Test PHP settings:
We can simply write a PHP page. We can use a text editor and enter the following code:
<html>
<head>
<title>
hello
</title>
< /head>
<body>
<?php echo "hello,php"; ?>
</body>
</html>
Then save this file as hello.php and place it in Apache's htdocs directory (We can also change this directory in the http.conf file), and then enter http://localhost/hello.php in our browser. If hello and php can be displayed correctly, it means that our PHP configuration is It can work normally.
This way we can also design our PHP site in the future
The above introduces the installation and configuration of apache tomcat Windows PHP5 and Apache, including the content of apache tomcat. I hope it will be helpful to friends who are interested in PHP tutorials.