
Apache
用户昵称不能为空
想马儿跑又想马儿不吃草。情商很低怎么了
展开
-
网站是怎么了,一直http/1.1 302 found 浏览器假死了一样
网站不知道是怎么了,是程序的问题?还是服务器的问题?还是htaccess配置文件的问题?反正设置了404 ErrorDocument,结果,大部分时候,请求到了404页面,浏览器就一直加载加载,反正无期限的加载下去。IE8浏览器、firefox、chrome都是这样,无期限的使劲加载,等待www.xxx.com..... 360安全浏览器则是正常的返回404程序设定的显示内容。查原创 2013-01-28 21:04:08 · 21311 阅读 · 1 评论 -
Linux Centos7 Apache 访问 You don't have permission to access / on this server.
折腾了很久,今天才找到了最正确的答案。感言真不容易。百度出来的99%都是采集的内容,全都是错误的。You don't have permission to access / on this server.百度出的解决方法:1)关闭selinux 。坑,服务器根本就没开启selinux2)修改 httpd.conf 中的 allow from all!坑,Apac原创 2014-10-16 23:58:22 · 21621 阅读 · 11 评论 -
ThinkPHP3.2多域名 Virtual .htaccess 匹配 RewriteCond %{HTTP_HOST}
Files *> Options -IndexesFiles>IfModule mod_headers.c>FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">Header set Cache-Control "max-age=2592000, public"FilesMatch>FilesMatch "\.(x原创 2014-11-10 14:46:31 · 6550 阅读 · 1 评论 -
Linode 1G 1024 CentOS7+Apache+PHP 负载能力ab测试
使用的系统信息:[root@localhost ~]# uname -aLinux localhost.localdomain 3.15.4-x86_64-linode45 #1 SMP Mon Jul 7 08:42:36 EDT 2014 x86_64 x86_64 x86_64 GNU/Linux[root@localhost ~]# php -vPHP 5.4.16 (cli)原创 2014-09-11 10:26:27 · 2766 阅读 · 0 评论 -
win Apache 使用 openssl 开启ssl步骤
无法启动 httpdC:\Users\Administrator>httpd -vServer version: Apache/2.4.9 (Win64)Apache Lounge VC11 Server built: Mar 16 2014 12:42:59C:\Users\Administrator>httpd -XAH00526: Syntax error on line 73 of原创 2015-08-31 22:45:10 · 10274 阅读 · 0 评论 -
nginx localhost 配置,开启目录浏览
以前使用Apache,有时候访问 localhost ,居然提示403 access die ,但有时候过几天又可以(没有修改过任何配置的情况下),很诡异,出现这样情况的时候不管是怎么修改配置都是提示403无权限!几率很低但一直无法解决。换 nginx 后就没有再出现这样问题,autoindex 用的很爽。配置文件 localhost.conf :其中对 http://localhos原创 2015-02-01 11:43:53 · 14812 阅读 · 0 评论 -
RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored.
报错提示:[Tue Dec 02 13:00:53.567492 2014] [rewrite:warn] [pid 10140:tid 3520] AH00665: RewriteCond: NoCase option for non-regex pattern '-f' is not supported and will be ignored. (/home/xxx/.htaccess原创 2014-12-02 13:04:25 · 3441 阅读 · 1 评论 -
PHP 重写读取文件,适用多域名的情况!
如果一个网站同一套程序绑定了多个域名 www.a.com ,www.b.com,为了区分他们的robots.txt、百度站长验证文件等,如 www.a.com/robos.txt 的内容来自于 /Virtual/www.a.com/robots.txt www.b.com/robots.txt 的内容来自于 /Virtual/www.b.com/robots.txt 的方法:Rewrite原创 2014-12-01 19:02:33 · 2272 阅读 · 0 评论 -
ThinkPHP 3.2 Apache .htaccess 开启缓存max-age(2014-11-7修正版)
Files *> Options -IndexesFiles>IfModule mod_headers.c>FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">Header set Cache-Control "max-age=2592000, public"FilesMatch>FilesMatch "\.(x原创 2014-11-07 09:49:54 · 2556 阅读 · 1 评论 -
Linux Apache 给 awstats 创建 访问密码
CentOS7 安装最新版本 awstats ,在httpd.conf 中加入了alias,可以直接访问网址就进入 浏览。十分不安全。给访问加上密码的方法:[root@localhost wwwroot]# htpasswd -bc /home/awstats/wwwroot/.htpasswd aaa 123456[root@localhost wwwroot]# nano原创 2014-10-18 20:03:06 · 2536 阅读 · 0 评论 -
Apache htaccess 重写如果文件存在!
如果文件 data/cache/index.html 存在,那么才重写。否则使用默认的MVC 重写!RewriteEngine onRewriteCond %{DOCUMENT_ROOT}/data/cache/list_1.html -fRewriteRule ^game\/?$ data/cache/list_1.html [L]RewriteCond %{REQUEST_FILENA...原创 2014-11-19 09:40:18 · 3416 阅读 · 0 评论 -
解决Wamp 开启vhost localhost 提示 403 Forbbiden 的问题!
很奇怪的一个问题,我以前从来都没有这样过!访问 http://localhost/ 提示 403 Forbbiden。我之前的设置一直都是这样的:httpd.conf AllowOverride All Options Indexes FollowSymLinks Require all grantedextra/httpd-vhost.conf原创 2014-11-17 23:07:03 · 25100 阅读 · 4 评论 -
Apache htaccess 设置 设置expires和max-age缓存 的兼容写法
htaccess文件内容:<IfModule mod_headers.c><FilesMatch "\.(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">Header set Cache-Control "max-age=604800, public"</FilesMatch><FilesMatch...原创 2014-08-14 10:31:27 · 4910 阅读 · 0 评论 -
Apache服务器 htaccess 完整备份
Options -IndexesHeader set Cache-Control "max-age=2592000, public"Header set Cache-Control "max-age=604800, public, max-age"Header set Cache-Control "max-age=18000, max-age" Options原创 2014-08-18 10:32:57 · 1698 阅读 · 0 评论 -
linux Apache rotatelogs 失败不生效的原因和解决办法
rotatelogs 截断日志,进行配置。但是保存vhost.conf 之后,服务器httpd -k restart 始终无法重启成功。日志文件:(2)No such file or directory: AH00089: Couldn't start ErrorLog process ' rotatelogs /var/www/html/logs/error/%Y/%m/%d_error原创 2014-10-19 22:54:14 · 10132 阅读 · 0 评论