美文网首页我爱编程
windows下安装Apache

windows下安装Apache

作者: Andrew玩Android | 来源:发表于2017-06-12 19:17 被阅读44次

下载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

相关文章

网友评论

    本文标题:windows下安装Apache

    本文链接:https://www.haomeiwen.com/subject/hmghqxtx.html