博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Apache
阅读量:5107 次
发布时间:2019-06-13

本文共 1509 字,大约阅读时间需要 5 分钟。

Apache

 

官网下载

http://httpd.apache.org/

 http://httpd.apache.org/docs/current/platform/windows.html#down

官方推荐的第三方下载

http://www.apachehaus.com/cgi-bin/download.plx

 

推荐

http://www.apachelounge.com/download/

Visual Studio 2015 Update 1

VC14

 https://www.microsoft.com/en-us/download/details.aspx?id=49984

手动安装服务

httpd.exe -k install

httpd.exe -k uninstall

绿色版,不用setup,直接运行ApacheMonitor.exe启动服务。

命令参考

http://httpd.apache.org/docs/current/platform/windows.html#down

 VC14记得安装.

 启动不起来报错的话,在windows的事件查看器>Windows 日志>应用程序>错误,内容很明确的显示出来了,一般是下面2个文件需要修改,文件路径和端口。

 

httpd.conf

DocumentRoot "D:\php\httpd-2.4.18-win64-VC14\Apache24\htdocs"

ServerRoot "E:\MYDEV\web\httpd-2.4.18-win64-VC14\Apache24"

 Listen 127.0.0.1:8080

 

httpd-xampp.conf

LoadFile "E:\MYDEV\web\PHP\xampp\php\php7ts.dll"

LoadModule php7_module "E:\MYDEV\web\PHP\xampp\php\php7apache2_4.dll"

AppServ

http://www.appservnetwork.com/

 

EasyPHP

http://www.easyphp.org/

 

XAMPP

https://www.apachefriends.org/index.html

Apache + MariaDB + PHP + Perl

比较好用的集成包。

 

test local

http://127.0.0.1:8080/index.html

 

Forbidden

You don't have permission to access / on this server.

Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.

http 403 禁止访问

you don't have permission to access / on this server

please check file httpd.conf. 

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Satisfy all
    Require all denied//拒绝所有请求,前面加个#注释就OK啦。
</Directory>

转载于:https://www.cnblogs.com/cb168/p/5059231.html

你可能感兴趣的文章
微信公众号里面使用地图导航
查看>>
部署支持 https 的 Nginx 服务
查看>>
‘Cordova/CDVPlugin.h’ file not found
查看>>
WebAssembly是什么?
查看>>
C# 实现自动化打开和关闭可执行文件(或 关闭停止与系统交互的可执行文件)...
查看>>
树状数组_一维
查看>>
【拓扑排序】【最短路】【最小生成树】Day 9.2
查看>>
如果没有按照正常的先装iis后装.net的顺序,可以使用此命令重新注册一下:
查看>>
linux install ftp server
查看>>
C# 使用 Abot 实现 爬虫 抓取网页信息 源码下载
查看>>
嵌入式软件设计第8次实验报告
查看>>
NP难问题求解综述
查看>>
算法和数据结构(三)
查看>>
看一下你在中国属于哪个阶层?
查看>>
在iOS 8中使用UIAlertController
查看>>
Ubuntu下的eclipse安装subclipse遇到没有javahl的问题...(2天解决了)
查看>>
Cadence Allegro 如何关闭铺铜(覆铜)shape的显示和设置shape显示模式–allegro小技巧...
查看>>
Atcoder Grand Contest 004 题解
查看>>
MFC中 给对话框添加背景图片
查看>>
alter database databasename set single_user with rollback IMMEDIATE 不成功问题
查看>>