Home > Article > Backend Development > Configure Apache2 + PHP5 + MYSQL5_PHP tutorial
Configuration process:
(1) http.conf
Run PHP directly as a module of apache:
LoadModule php5_module "C:/php/php5apache2.dll"
AddType application/x -httpd-php .php
Create a www directory in the Apache directory to store site files. In http.conf:
Change DocumentRoot "D:/Apache2/htdocs" to DocumentRoot "D:/Apache2/www"
Directly list the directory:
Options FollowSymLinks
AllowOverride None
Change to:
Options Indexes FollowSymLinks
AllowOverride None
Set the default character to Simplified Chinese:
AddDefaultCharset GB2312
Restart apache
(2) php.ini
Copy php.ini-dist to C:windows and rename it to php.ini
extension_dir = "C:phpext"
Remove the following semicolons to support mysql:
;extension=php_mysql.dll
Copy libmysql.dll and libmysqli.dll in the php directory to windows/system32.
Restart apache
(3) Mysql
Install Mysql:
Then browse to "http://localhost/phpmyadmin"