绝对冷血 发表于 2011-1-23 00:13:42

bd126 原创小偷 NGINX 规则

bd126 原创小偷 NGINX 规则

[*]
[*]location / {
[*] rewrite ^/html/(.+).html$ /html.php?docID=$1;
[*] rewrite ^/list/(.+)-(.+).html$/list.php?q=$1&page=$2;
[*] rewrite ^/list/(.+).html$ /list.php?q=$1;
[*]         }
[*]复制代码

itisfine 发表于 2011-1-23 00:40:22


victory.gif

victory.gif

victory.gif

绝对冷血 发表于 2011-1-23 01:11:32

列表页分页错位 修改
tpl/list.pl
[*]
[*]   
[*]
[*]
[*]$value){
[*]echo preg_replace("|\?q=(.*)&page=(.*)">|","/list/$1-$2.html">",$value);
[*]}
[*]?>
[*]
[*]
[*]
[*]复制代码为
[*]
[*]   
[*]
[*]$value){
[*]echo preg_replace("|\?q=(.*)&page=(.*)">|","/list/$1-$2.html">",$value);
[*]}
[*]?>
[*]复制代码

xspoco 发表于 2011-1-23 01:32:07

多谢lz分享

yeqery 发表于 2011-1-23 02:36:40

这个学习下

googlebot2 发表于 2011-1-23 08:36:40

学习下

itisfine 发表于 2011-1-23 11:43:26

怎样才能把那些广告删干净呢
mad.gif

绝对冷血 发表于 2011-1-23 11:49:11

原帖由 itisfine 于 2011-1-23 11:43 发表
back.gif

怎样才能把那些广告删干净呢
mad.gif


tpl下面的模板里面

itisfine 发表于 2011-1-23 12:04:33

干掉了,原来是cache作怪
lol.gif
页: [1]
查看完整版本: bd126 原创小偷 NGINX 规则