配置apache允許所有ip訪問


=====================================================

==== 原文鏈接:http://www.cnblogs.com/Hzhihua/p/6884490.html

==== 轉載請說明原文出處

=====================================================

  1. 打開  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

==== 轉載請說明原文出處

=====================================================

記得重啟 apache 服務器


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM