我爱编程

windows下安装Apache

2017-06-12  本文已影响44人  Andrew玩Android

下载Apache

64位下载地址

  1. 下载后解压到安装目录。
  2. 修改httpd.conf。

安装Apache

  1. 以管理员身份运行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

上一篇 下一篇

猜你喜欢

热点阅读