Nginx环境下ECSHOP伪静态(rewrite)代码规则写法

Nginx环境下ECSHOP伪静态(rewrite)代码规则写法

if (!-e $request_filename)
{
rewrite “^/index\.html” /index.php last;
rewrite “^/category$” /index.php last;
rewrite “^/feed-c([0-9]+)\.xml$” /feed.php?cat=$1 last;
rewrite “^/feed-b([0-9]+)\.xml$” /feed.php?brand=$1 last;
rewrite “^/feed\.xml$” /feed.php last;
rewrite “^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$” /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5&page=$6&sort=$7&order=$8 last;
rewrite “^/category-([0-9]+)-b([0-9]+)-min([0-9]+)-max([0-9]+)-attr([^-]*)(.*)\.html$” /category.php?id=$1&brand=$2&price_min=$3&price_max=$4&filter_attr=$5 last;
rewrite “^/category-([0-9]+)-b([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$” /category.php?id=$1&brand=$2&page=$3&sort=$4&order=$5 last;
rewrite “^/category-([0-9]+)-b([0-9]+)-([0-9]+)(.*)\.html$” /category.php?id=$1&brand=$2&page=$3 last;
rewrite “^/category-([0-9]+)-b([0-9]+)(.*)\.html$” /category.php?id=$1&brand=$2 last;
rewrite “^/category-([0-9]+)(.*)\.html$” /category.php?id=$1 last;
rewrite “^/goods-([0-9]+)(.*)\.html” /goods.php?id=$1 last;
rewrite “^/article_cat-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$” /article_cat.php?id=$1&page=$2&sort=$3&order=$4 last;
rewrite “^/article_cat-([0-9]+)-([0-9]+)(.*)\.html$” /article_cat.php?id=$1&page=$2 last;
rewrite “^/article_cat-([0-9]+)(.*)\.html$” /article_cat.php?id=$1 last;
rewrite “^/article-([0-9]+)(.*)\.html$” /article.php?id=$1 last;
rewrite “^/brand-([0-9]+)-c([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)\.html” /brand.php?id=$1&cat=$2&page=$3&sort=$4&order=$5 last;
rewrite “^/brand-([0-9]+)-c([0-9]+)-([0-9]+)(.*)\.html” /brand.php?id=$1&cat=$2&page=$3 last;
rewrite “^/brand-([0-9]+)-c([0-9]+)(.*)\.html” /brand.php?id=$1&cat=$2 last;
rewrite “^/brand-([0-9]+)(.*)\.html” /brand.php?id=$1 last;
rewrite “^/tag-(.*)\.html” /search.php?keywords=$1 last;
rewrite “^/snatch-([0-9]+)\.html$” /snatch.php?id=$1 last;
rewrite “^/group_buy-([0-9]+)\.html$” /group_buy.php?act=view&id=$1 last;
rewrite “^/auction-([0-9]+)\.html$” /auction.php?act=view&id=$1 last;
rewrite “^/exchange-id([0-9]+)(.*)\.html$” /exchange.php?id=$1&act=view last;
rewrite “^/exchange-([0-9]+)-min([0-9]+)-max([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$” /exchange.php?cat_id=$1&integral_min=$2&integral_max=$3&page=$4&sort=$5&order=$6 last;
rewrite ^/exchange-([0-9]+)-([0-9]+)-(.+)-([a-zA-Z]+)(.*)\.html$” /exchange.php?cat_id=$1&page=$2&sort=$3&order=$4 last;
rewrite “^/exchange-([0-9]+)-([0-9]+)(.*)\.html$” /exchange.php?cat_id=$1&page=$2 last;
rewrite “^/exchange-([0-9]+)(.*)\.html$” /exchange.php?cat_id=$1 last;
}

Nginx环境下DiscuzX伪静态(rewrite)代码规则写法

Nginx环境下DiscuzX伪静态(rewrite)代码规则写法

rewrite ^([^\.]*)/topic-(.+)\.html$ $1/portal.php?mod=topic&topic=$2 last;
rewrite ^([^\.]*)/article-([0-9]+)-([0-9]+)\.html$ $1/portal.php?mod=view&aid=$2&page=$3 last;
rewrite ^([^\.]*)/forum-(\w+)-([0-9]+)\.html$ $1/forum.php?mod=forumdisplay&fid=$2&page=$3 last;
rewrite ^([^\.]*)/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=viewthread&tid=$2&extra=page%3D$4&page=$3 last;
rewrite ^([^\.]*)/group-([0-9]+)-([0-9]+)\.html$ $1/forum.php?mod=group&fid=$2&page=$3 last;
rewrite ^([^\.]*)/space-(username|uid)-(.+)\.html$ $1/home.php?mod=space&$2=$3 last;
rewrite ^([^\.]*)/([a-z]+)-(.+)\.html$ $1/$2.php?rewrite=$3 last;
if (!-e $request_filename) {
return 404;
}

Nginx环境下DEDECMS伪静态(rewrite)代码规则写法

Nginx环境下DEDECMS伪静态(rewrite)代码规则写法:

rewrite “^/index.html$” /index.php last;
rewrite “^/list-([0-9]+)\.html$” /plus/list.php?tid=$1 last;
rewrite “^/list-([0-9]+)-([0-9]+)-([0-9]+)\.html$” /plus/list.php?tid=$1&totalresult=$2&PageNo=$3 last;
rewrite “^/view-([0-9]+)-1\.html$” /plus/view.php?arcID=$1 last;
rewrite “^/view-([0-9]+)-([0-9]+)\.html$” /plus/view.php?aid=$1&pageno=$2 last;
rewrite “^/tags.html$” /tags.php last;
rewrite “^/tag-([0-9]+)-([0-9]+)\.html$” /tags.php?/$1/$2/ last;

Nginx环境下PHPCMS伪静态(rewrite)代码规则写法

Nginx环境下PHPCMS伪静态(rewrite)代码规则写法:

rewrite ^/caipu-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last;
rewrite ^/content-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=show&catid=$1&id=$2&page=$3 last;
rewrite ^/list-([0-9]+)-([0-9]+).html /index.php?m=content&c=index&a=lists&catid=$1&page=$2 last;
rewrite ^/tag-([^\.]*)-([0-9]+)-([0-9]+).html /index.php?m=content&c=tag&catid=$2&tag=$1&page=$3 last;
rewrite ^/comment-([0-9]+)-([0-9]+)-([0-9]+).html /index.php?m=comment&c=index&a=init&commentid=content_$1-$2-$3 last;
rewrite ^/([^\.]*).html /index.php?m=member&c=index&a=$1 last;

Nginx环境下WordPress伪静态(rewrite)代码规则写法

Nginx环境下WordPress伪静态(rewrite)代码规则写法:

if (-f $request_filename/index.html){
rewrite (.*) $1/index.html break;
}
if (-f $request_filename/index.php){
rewrite (.*) $1/index.php;
}
if (!-f $request_filename){
rewrite (.*) /index.php;
}

协和医科大学袁钟主题演讲:《做与文化相适应的医生》

一个人找你看病,把所有隐私告诉你,把衣服脱光了让你检查,把所有痛苦告诉你,把生命都交给你,这种人是仅次于神的人,而不是一般人。因为爱才有了医疗和医院,如果把这个精神泯灭了就不再叫医疗,那叫交易,它不可能有尊严。

当中央电视台在播“冬虫夏草含着吃”“生命一号”等虚假广告的时候,就说明整条河流都已经被污染,没有哪个鱼能摆脱被污染,治理污染的办法就是治理上游。

经常有学生问我人文医学有什么用处?我想从两个层面来说,第一个层面是价值观,第二个层面是人文智慧。价值观是道,人文智慧是术。 继续阅读“协和医科大学袁钟主题演讲:《做与文化相适应的医生》”

荣耀畅玩4X电信版B275降级回退至B249SP2详细教程

2015年7月18日刷了华为EMUI275版ROM,手机耗电太厉害,一晚上待机电量损失25%左右,于是想刷回249SP2版ROM,因为这个版本待机一晚上只要3%的电量,但苦于找不到大跨度降级教程和先例,解锁后刷入民间ROM顺利,在强刷同版本官方ROM遇到很大阻碍,只能在各版本的RECOVERY和ROM中测试,导致手机被刷成砖块,度过了一天没有手机的日子。直到16个小时后的22时,成功回退官方249SP2版ROM。

20150721

荣耀畅玩4X电信版B275回退降级至B249大致步骤:

1、申请官方解锁,获取解锁码。
2、利用高通华为工具解锁手机ROM。
3、刷入第三方Recovery,彻底清理手机。做完这部手机已经是砖块
4、刷入已Root版的第三方ROM。
5、从官方ROM中提取Recovery并刷入。
6、最后刷入自己喜欢的官方ROM。

最后真诚的建议一句,降级回退刷机真的有风险,请勿随便尝试。华为只支持升级不支持降级,但ROM做的严密可以提供更好的体验。

(更新)WordPress中如何更改插入more标签代码链接

更新说明:以WordPress4.2.2及2015模板中,继续阅读默认不索引链接(不影响SEO),同时百度爬虫可以对#more-{$post->ID}进行处理,所以此文意义已经不大。

WordPress默认发表的文章是全文显示的,而有时候我们仅需要显示博文的几句,特别是在列表页上。这时就需要使用插入More标签, 继续阅读“(更新)WordPress中如何更改插入more标签代码链接”