Bangkejia (www.Bkjia.com) Tutorials There are too many tutorials on installing apache and php under windows. The editor searched the Internet, but none of them were decent, or they were not right. It’s clear, or it cannot be opened. My personal opinion is not to use the package, because you can practice installing it yourself. Below, I will share the method of installing apache+php by myself as follows:
1. Download the Apache2 and php5 installation packages (search on Baidu yourself)
2. Click directly to install Apache2 (it is recommended not to install the C drive to save trouble). The installation steps are not much different from other software installations, so there is no special statement.
You can ignore the port problem for now. After installation, you can change the port number by modifying the Listen in httpd.config.
Bkjia www.bkjia.com
3. Install PHP5:
Unzip the php5 zip package and put it in a directory you find convenient, such as d:/php5.
4. (1) Copy all dll files in the php folder to c:/windows/system32/ (including all dll files in the ext folder in the php5 directory)
(2) Copy the "php.ini-recommended" file to "c:/windows" and rename it to "php.ini".
5. Modify the php.ini file that has just been renamed:
(1) Find the "extension_dir" field and assign the value to the ext directory in the php decompression path, such as "D:php5ext"
(2) Find the cgi.force_redirect string. The default value is 1. Modify it to 0. And cancel the previous; sign
6. Find the following four sentences respectively and remove the “;” before them.
extension=php_mbstring.dll (wide character, used to support PhpMyAdmin to avoid character display problems)
extension=php_mcrypt.dll (used to support PhpMyAdmin)
Extension=php_mysql.dll (MySql module, you can only access the MySql database after opening it)
extension=php_mysqli.dll (MySql module)
7. Configure Apache to support php5:
Open the "conf" folder in the apache installation directory. Apache configuration mainly relies on httpd.conf. Open the file with a compilation tool and modify some fields in it:
(1)Listen field, the default value is 80, you can modify the port value to change the port of the apache service (so as not to conflict with the port of tools such as tomcat)
(2)DocumentRoot This is the directory where your own web page files are placed. The default is the "htdoc" folder under the apache installation directory. It can also be changed to other directories on the local machine, using absolute paths.
I am using: DocumentRoot "D:/phpwork/" (newly created working directory)
8. Set the start page:
You can copy my configuration here, or you can add the required start page file name yourself. Note that file names are separated by spaces instead of commas
DirectoryIndex index.php index.html default.php default.html index.htm
9. Configure the php module: add two sentences after #LoadModule (there is a row of code) (this is my installation directory, you can make appropriate adjustments according to your own installation situation)
PHPIniDir "D:/php5/"
LoadModule php5_module "D:/php5/php5apache2_2.dll"
10. Save the httpd.conf file and restart Apache. If it starts successfully, create a new liehuo_net.php file under phpwork with the content:
以下为引用的内容: echo "Welcome to Liehuo.Net! "; phpinfo(); ?> |
Enter http://localhost/: the port number you set yourself/liehuo_net.php in the browser. Output the Welcome To Liehuo.Net and php configuration environment variable information. The installation is over. If you have any questions, please comment. !