当前位置:  编程技术>php

PHP错误:Forbidden You don't have permission to access / on this server

    来源: 互联网  发布时间:2014-08-30

    本文导语:  用http://localhost/test.php进行的测试,没有发现问题,后来要在内网测试一下就要用IP地址进行那个访问了,如:http://10.10.50.195/test.php,就出现了这个问题。 修改一下php的配置文件httpd.conf。 在原有的位置文件中找到配置节:   ...

用http://localhost/test.php进行的测试,没有发现问题,后来要在内网测试一下就要用IP地址进行那个访问了,如:http://10.10.50.195/test.php,就出现了这个问题。
修改一下php的配置文件httpd.conf。
在原有的位置文件中找到配置节:
 

代码示例:

    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    Satisfy all

 

修改成:
 

代码示例:

    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
#    Deny from all
    Allow from all
#允许所有访问
    Satisfy all

还有:
 

代码示例:

    #
    # 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

 

修改成:
 

代码示例:

    #
    # 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

 

然后保存,重启服务,再次访问时发现问题已解决了。


    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • PHP严重致命错误处理:php Fatal error: Cannot redeclare class or function
  • PHP.ini中配置屏蔽错误信息显示和保存错误日志的例子
  • PHP错误Parse error: syntax error, unexpected end of file in test.php on line 12解决方法
  • php显示错误问题
  • PHP错误Cannot use object of type stdClass as array in错误的解决办法
  • linux下配置PHP 编译的时候出现错误
  • 装好mysql,apache后,再装php,配置httpd.conf时出现了如下错误!
  • php syntax error, unexpected $end 错误怎么解决
  • 实现Nginx中使用PHP-FPM时记录PHP错误日志的配置方法
  • php出现内存位置访问无效错误问题解决方法
  • 配置PHP环境的时候autoconf-2.61,提示configure错误
  • 求助:第一次装apache+php,运行站点出现403错误!
  • php的慢速日志引起的Mysql错误问题分析
  • php弹出错误警告函数
  • PHP代码错误:急!!!急!!急!!!Fatal error: Call to undefined function: dbase_open() 怎么解决???????????? 100在
  • PHP捕获Fatal error错误的方法
  • PHP中Fatal error session_start()错误解决步骤
  • PHP启动报错 php提示SNMP错误的解决方法
  • 非常实用的php弹出错误警告函数扩展性强
  • php错误Undefined variable: 如何解决
  • PHP Parse Error: syntax error, unexpected $end 错误解决办法
  • 修改配置真正解决php文件上传大小限制问题(nginx+php)
  • IIS7配置PHP图解(IIS7+PHP_5.2.17/PHP_5.3.5)
  • docker中文入门学习手册 iis7站长之家
  • php输入流php://input使用示例(php发送图片流到服务器)
  • 修改配置真正解决php文件上传大小限制问题(apache+php)
  • PHP转换器 HipHop for PHP
  • PHP去除html标签,php标记及css样式代码参考
  • PHP 框架 Pop php
  • PHP 'ext/soap/php_xml.c'不完整修复存在多个任意文件泄露漏洞
  • PHP的JavaScript框架 PHP.JS


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3