下载Apache
- 下载后解压到安装目录。
- 修改httpd.conf。
安装Apache
- 以管理员身份运行cmd命令行,进入安装目录/bin
#安装服务
httpd -k install
#启动服务
httpd -k start
重启和卸载:
#重启服务
httpd -k restart
#卸载服务
httpd -k uninstall
异常
Forbidden
现象:Forbidden You don't have permission to access / on this server,提示没有权限访问。
解决办法:修改httpd.conf:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Allow from all
</Directory>
参考:
Failed to open the WinNT service manager
Windows 7/8 64位下安装64位Apache 2.4.7
解决Forbidden You don't have permission to access / on this server