ts2009 发表于 2017-1-4 08:26:55

apache内网访问403错误

  1、apache在本机上访问正常,但是用ip访问为403禁止访问!
  解决方法是:1、关闭apache服务器上的防火墙
  2、apache配置文件要修改
  <Directory "D:/wamp/www">
  #
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    #   Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    #
    # Note that "MultiViews" must be named *explicitly* --- "Options All"
    # doesn't give it to you.
    #
    # The Options directive is both complicated and important.  Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    #
    Options Indexes FollowSymLinks
  #
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    #   Options FileInfo AuthConfig Limit
    #
    AllowOverride all
  #
    # Controls who can get stuff from this server.
    #
#   onlineoffline tag - don't remove
    Order Deny,Allow
    Deny from all
    Allow from 127.0.0.1
  修改为
    
    Allow from all
  </Directory>
页: [1]
查看完整版本: apache内网访问403错误