当前位置:首页 > 服务器技术 > apache

Setup Apache + PHP + MySql on Windows 10

The below steps recorded my experiences to setup the Apache + PHP + MySql on my Windows 10.

1. Download Apache http server from http://www.apachehaus.com/cgi-bin/download.plx, unzip and put it to C:ApacheServer.

2. Download php from http://php.net/downloads.php, unzip and put to C:PHP.

3. Download Mysql from https://dev.mysql.com/downloads/windows/installer/ and install it.

4. Config the Apache server by edit the C:ApacheServerconfhttpd.conf file. Add below setting after the LoadMoudle section.

  LoadModule php5_module "C:/php/php5apache2_2.dll"

  AddHandler application/x-httpd-php .php

  PHPIniDir "C:/php"

5. Continue edit the C:ApacheServerconfhttpd.conf file, change the "ServerRoot" to "C:ApacheServer", change the "DocumentRoot" to "C:ApacheServerhtdocs"

6. Config the PHP by edit the C:phpphp.ini, remove ";" before extension=php_mbstring.dll, extension=php_mysql.dll, extension=php_mysqli.dll.

7. Start the Apache server by C:ApacheServerApacheMonitor.exe.

8. Use your browser to open http://localhost to test if the server can work or not.

Setup Apache + PHP + MySql on Windows 10

标签:

本文系统来源:http://www.cnblogs.com/shengguang/p/4814737.html


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!