| « The Sysinternals | Install Apache after IIS in Windows7 » |
Nov
26
Build Web server from scratch is long journey.
mainTake more time to install and config Apache httpd server without use Appserv.
I found this page
http://www.thesitewizard.com/php/install-php-5-apache-windows.shtml
It may can help me for this time.
.....
After follow instruction on web. I have to add this config to httpd.conf
ScriptAlias /php/ "c:/php/"
AddType application/x-httpd-php .php
Action application/x-httpd-php "/php/php-cgi.exe"
<Directory "C:/php">
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
AllowOverride None
Options None
Order allow,deny
Allow from all
</Directory>
Wow, I can develop PHP by use Apache and ASP.Net by use IIS in this time.
At Last, I add this line.
AddDefaultCharset utf-8
for config apache to use utf-8 for default charset.
Recent comments