php403错误
程序员文章站
2022-03-19 08:29:21
...
我们使用http://localhost/test.php进行本机测试,没有发现问题,在内网测试时,使用IP地址进行访问,如:http://10.10.50.195/test.php,就出现了403错误这个问题。解决这个问题的方法如下:
1、首先修改一下php的配置文件httpd.conf
在原有的位置文件中找到配置节
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow Deny from all Satisfy all </Directory>
修改成
<Directory /> Options FollowSymLinks AllowOverride None Order deny,allow # Deny from all Allow from all #允许所有访问 Satisfy all </Directory>
还有
<Directory "D:/Wamp5/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 </Directory>
修改成
<Directory "D:/Wamp5/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>
2、然后保存,重启服务,再访问就解决了这个问题。
更多PHP相关知识,请访问PHP中文网!
以上就是php403错误的详细内容,更多请关注其它相关文章!
上一篇: JavaScript运行原理详细分析解答
推荐阅读
-
安装cad提示1606错误怎么办 autocad报错1606的解决方法
-
PHP异常Parse error: syntax error, unexpected T_VAR错误解决方法
-
ThinkPHP调用common/common.php函数提示错误function undefined的解决方法
-
配置php网页显示各种语法错误
-
pip 错误unused-command-line-argument-hard-error-in-future解决办法
-
Linux 出现telnet: 127.0.0.1: Connection refused错误解决办法
-
oracle数据库下五种解决ORA-04031错误问题的方法
-
Linux计划任务Crontab学习笔记(5):常见错误使用案例
-
IE提示已阻止此网站显示有安全证书错误的内容的解决方法小结
-
在Python中写入文件时,权限被拒绝错误