Installing Apache 2.4 and PHP7 in windows
Installing Apache 2.4 and PHP 7 on windows
Installing Apache 2.4
Download Apache binary from one of these websites:
Unzip the contents of the archive to a folder such as c:\Apache24
Install Apache as a windows service.
cd "c:\Apache24\bin"httpd.exe -k install -n "Apache 2.4"
Ask windows to start Apache on start-up, by running this command
sc config Apache2.4 start= demand
Installing PHP 7
Download the Thread Safe version of php archive from http://windows.php.net/download/ depending on the architecture of your computer (x86 if it’s 32bit and x64 if it’s 64bit).
Unzip the archive to a folder such as c:\php7
Make a copy of the php.ini-development and rename it to php.ini
Add the path c:\php7 to your environment variables
Configure your apache to work with PHP7
Open the configuration file for Apache 2.4 (c:\Apache24\conf\httpd.conf) and add the following lines (or just change them if they already exist):
-
Locate
ServerRoottoc:\Apache24ServerRoot "c:/Apache24" -
Configure port of Apache to
8080Listen 8080 -
Locate the
DocumentRootto point to the location from where you will server your pagesDocumentRoot "c:/Apache24/htdocs"<Directory "c:/Apache24/htdocs"> -
Add the following lines on top of the changes you made in the previous step
AddHandler application/x-httpd-php .phpAddType application/x-httpd-php .php .htmlLoadModule php7_module "c:/php7/php7apache2_4.dll"PHPIniDir "c:/php7" -
Run the command
c:\Apache24\bin\httpd.exe -tto make sure the syntax of the configuration file is good.