1. 程式人生 > >配置apache允許所有ip訪問

配置apache允許所有ip訪問

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"是伺服器根目錄(伺服器根目錄根據實際情況修改)
  <Directory "C:\xampp\htdocs"
/>     AllowOverride all     ....     Require all granted# 將denied 改為 granted   </Directory>

原文