- 浏览: 496646 次
- 性别:
- 来自: 武汉
文章分类
- 全部博客 (335)
- VM (2)
- python 基础 (78)
- C (7)
- php (38)
- django (8)
- c++ (1)
- python 服务端编程 (21)
- ubuntu (1)
- linux (26)
- mysql (24)
- 缓存管理 (5)
- nginx (4)
- linux 命令行 (16)
- web (8)
- javascript (8)
- python 模块 (3)
- java (6)
- 面试题 (2)
- tornado (1)
- 运维 (10)
- 网络编程 (0)
- svn (5)
- css (1)
- mongodb (3)
- vim (8)
- infobright (1)
- shell (1)
- 算法 (2)
- redis (1)
最新评论
Forbidden You don't have permission to access *****.php
一般是httpd.conf配置有问题,还有一种可能是你访问的IP不能访问,得用域名访问。
如下配置,只能用域名访问,如果用的是IP,就会报错
***.google.cc
***.google.net
RewriteEngine on
RewriteCond %{HTTP_HOST} !^.*\.google\.cc$
RewriteCond %{HTTP_HOST} !^.*\.google\.net$
RewriteRule ^/(.*) - [F,L]
一般是httpd.conf配置有问题,还有一种可能是你访问的IP不能访问,得用域名访问。
如下配置,只能用域名访问,如果用的是IP,就会报错
***.google.cc
***.google.net
RewriteEngine on
RewriteCond %{HTTP_HOST} !^.*\.google\.cc$
RewriteCond %{HTTP_HOST} !^.*\.google\.net$
RewriteRule ^/(.*) - [F,L]
发表评论
-
修改 phpStorm 7.1.3 字体大小
2014-11-08 14:56 617原文地址: http://blog.csdn.net/wi ... -
UNIX时间戳换算问题
2014-02-20 09:35 935转:http://chenyudengyuqiong-163 ... -
【转】yii框架,命令行应用程序设计
2014-02-12 18:27 793首先,当您接触yii框架时,您会发现,它已经精心设计好了一套命 ... -
php http_build_query
2014-02-12 09:45 840这函数方便,不用自己去拼接了 http_build_que ... -
stream_context_create作用
2014-02-12 09:42 821转 http://huangliangfeixu.blo ... -
php 的 private public protected
2014-01-09 20:14 1231public 表示全局,类内部外部子类都可以访问; pr ... -
CDbConnection failed to open the DB connection: could not find driver
2014-01-02 16:11 1097wamp5 看看是否安装了php_pdo_mysql扩展 ... -
【转】浅谈页面静态化、缓存技术与SEO
2013-12-25 11:17 1334原文地址: 浅谈页面静态化、缓存技术与SEO http ... -
php 路由机制
2013-12-02 17:52 809【转】 http://3haku.net/2012/07/04 ... -
php 跨域问题
2013-11-21 17:36 472header('P3P:CP="IDC DSP C ... -
【转】深入浅出之Smarty模板引擎工作机制(二)
2013-10-13 19:18 710http://www.cnblogs.com/hongfei/ ... -
【转】深入浅出之Smarty模板引擎工作机制 一
2013-10-13 19:12 736http://www.cnblogs.com/hongfei/ ... -
【转 php 优化】Squid是什么,Squid工作原理是什么
2013-11-06 17:43 814http://wuhaoshu.blog.51cto.co ... -
【转】PHP加速插件eAccelerator和Zend Optimizer是什
2013-12-18 09:02 939eaccelerator是一个开放源码的php应用程序加速 ... -
【转 php优化 】三款免费的PHP加速器:APC、eAccelerator、XCache比较
2013-10-12 17:08 804http://www.vpser.net/opt/apc- ... -
php中heredoc的使用方法
2013-10-12 16:31 659Heredoc技术,在正规的PH ... -
【转】php 安全 讨论magic_quotes_gpc、mysql_real_escape_string、addslashes的区别及用法
2013-10-11 18:01 821原文地址: http://blog.unvs.cn/archi ... -
PHP负载均衡指南
2013-10-11 17:55 775原文地址: http://www.yeeyan.org/art ... -
【转】PHP心得(收藏,慢慢看)
2013-09-08 18:39 823转:http://my.oschina.net/liu ... -
PHP配置指令作用域说明(PHP_INI_PERDIR、PHP_INI_SYSTEM、PHP_INI_USER、PHP_INI_ALL)
2013-08-27 10:15 851PHP总共有4个配置指令作用域:(PHP中的每个指令都有自己 ...
相关推荐
Apache服务器在运行过程中可能会遇到各种错误,其中"403 Forbidden"是一个常见的错误,提示用户没有权限访问指定的资源。这个错误通常出现在尝试访问某个网页或文件时,服务器返回的状态码为403,表示服务器理解了...
键字: Apache 403 Forbidden 系统配置: 操作系统:Red Hat Linux 6.2 Web服务器:Apache 3.1.1+jakarta-tomcat 3.1.1 数据库服务器:oracle 8i Apache服务器是目前应用... You don’t have permission to access
一直在用APMServ5.2.6,mysql好办,可以用mariadb代替进行升级,但php...You don't have permission to access / on this server. Apache/2.4.9 (Win32) PHP/5.5.12 Server at www.sitename.com Port 80 一、在国内网
最近在工作中需要使用PHP访问Redis,从https://github.com/phpredis/phpredis下载了phpredis,并且按照官方的说明进行了安装 phpize ./configure [--enable-redis-igbinary] make && make install ...
查看/var/log/nginx/error.log日志显示:xxx 403 forbidden (13: Permission denied)错误。我勒个去~ 引起nginx 403 forbidden通常是三种情况:一是缺少索引文件,二是权限问题,三是SELinux状态。 一、缺少index....
主要介绍了wamp安装后自定义配置的方法,主要是遇到Forbidden you dont hava permission to access * on the server错误提示的解决方法,需要的朋友可以参考下
Delphi ftp 报Permission denied 问题.txt.Delphi ftp 报Permission denied 问题.txt
</b>...]</p> <p>> <span>SOME PAGES ON THIS SERVER THAT YOU DO HAVE PERMISSION TO ACCESS</span>: [如果您是内部人员,请联系技术获取访问权限!]</p> <p>> <span>HAVE A NICE DAY SIR DragonersLi :-)祝您开心...
问题:配置Apache,httpd.conf... You don’t have permission to access the requested object. It is either read-protected or not readable by the server. If you think this is a server error, please contact t
link ▶Don't use an #include when a forward declaration would suffice. When you include a header file you introduce a dependency that will cause your code to be recompiled whenever the header file ...
"pdf-forbidden.zip" 文件中的示例代码正是针对这种情况设计的。 在这个压缩包中,你将找到以下三个关键组成部分: 1. **HTML**:HTML 文件是用户界面的基础,它定义了网页的结构。在这个示例中,HTML 代码将用于...
如果不匹配,Nginx将返回403 Forbidden错误,阻止非法访问。 **防盗链的应用场景** 1. **保护静态资源** 防止其他人盗用网站的图片、视频等静态资源,降低服务器带宽消耗。 2. **付费内容下载** 对于付费用户...
Nginx服务器中403 forbidden的错误如何解决 在 Nginx 服务器中,403 Forbidden 错误是非常常见的错误之一。这种错误通常是由于服务器端的配置错误或权限不正确所导致的。在本文中,我们将详细探讨 Nginx 服务器中 ...
echo 'You don\'t have permission to access / on this server.'; echo '<P>'; echo 'Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.'; ...
You may make one copy of the licensed software for backup purposes, providing you only have one copy installed on one computer being used by one person (or number of users covered in a site license ...
<br>You may be wondering what .htaccess can do, or you may have read about some of its uses but don't realise how many things you can actually do with it. 你可能疑惑.htaccess到底能做些什么,...
#### 错误403.14 - Forbidden的原因分析 HTTP状态码403表示客户端请求被服务器拒绝。具体来说,“403.14 - Forbidden”错误通常发生在以下几种情况: 1. **Web服务器配置问题**:例如,应用程序池配置不正确、身份...