摘要: 如果我们网站临时关闭,必须告知用户以及蜘蛛,让用户跟蜘蛛知道网站只是临时关闭,而不是永久关闭,这样用户跟蜘蛛就会隔断时间再次访问网站,具体做法是创建一个返回503状态的文件。 1. 创建一个503.php的文件,并把它放到服务器的根目录 PHP代码 ... 阅读全文
posted @ 2015-08-12 10:51 Adtuu 阅读(297) 评论(0) 推荐(0) 编辑
摘要: 多端口vi httpd.confListen 8090 ServerName localhost Documentroot "/Users/dir/8090" Options Indexes FollowSymLinks AllowOverride None Order a... 阅读全文
posted @ 2015-08-12 10:47 Adtuu 阅读(159) 评论(0) 推荐(0) 编辑
摘要: MAC为例1、安装nginxbrew install nginx2、查找nginx配置文件在什么地方find /|grep nginx.conf3、修改配置文件nginx.confcd /usr/local/etc/nginxvi nginx.conflocation / { ... 阅读全文
posted @ 2015-08-12 10:41 Adtuu 阅读(319) 评论(0) 推荐(0) 编辑
摘要: round-robin:轮询。以轮询方式将请求分配到不同服务器上,默认least-connected:最少连接数。将下一个请求分配到连接数最少的那台服务器上ip-hash :基于客户端的IP地址。散列函数被用于确定下一个请求分配到哪台服务器上nginx.conf upstream myapp { ... 阅读全文
posted @ 2015-08-12 10:37 Adtuu 阅读(219) 评论(0) 推荐(0) 编辑
摘要: <?php$file = 'abcd.sqlite';mysql_connect('localhost','root','123456');mysql_select_db('zblog');mysql_query('set names utf8');/*$backup_stream = file_g... 阅读全文
posted @ 2015-08-12 10:31 Adtuu 阅读(1436) 评论(0) 推荐(0) 编辑
摘要: create('readme.txt,gnu-lgpl.txt');if ($v_list == 0) { die("Error : ".$archive->errorInfo(true));}*/$list = $archive->extract(PCLZIP_OPT_PATH, "extr... 阅读全文
posted @ 2015-08-12 10:25 Adtuu 阅读(687) 评论(0) 推荐(0) 编辑
摘要: " . time(). "\n"; } */ if($pids[$i] == -1) { echo"couldn't fork". "\n"; } elseif(!$pids[$i])... 阅读全文
posted @ 2015-08-12 10:23 Adtuu 阅读(270) 评论(0) 推荐(0) 编辑