=====================================================
==== 原文鏈接:http://www.cnblogs.com/Hzhihua/p/6884490.html
==== 轉載請說明原文出處
=====================================================
- 打開 apache安裝目錄/conf/httpd.conf 配置文件
a) 搜索Listen監聽端口,修改如下
#
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive.
#
# Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses.
#
#Listen 12.34.56.78:80
# 監聽80端口,允許所有ip訪問
# 與 Listen 0.0.0.0:80 等效
Listen 80
b)
1. 搜索"Directory /" 將Require all denied改為Require all granted
<Directory />
AllowOverride none
Require all granted# 將denied 改為 granted
</Directory>
2. 搜索"DocumentRoot" "E:/www"是服務器根目錄(服務器根目錄根據實際情況修改)
=====================================================
==== 原文鏈接:http://www.cnblogs.com/Hzhihua/p/6884490.html
==== 轉載請說明原文出處
=====================================================