博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
phpcm nginx 伪静态文件
阅读量:6139 次
发布时间:2019-06-21

本文共 998 字,大约阅读时间需要 3 分钟。

rewrite ^/show-([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;

1.去掉最后一行

第一条 

作用 内容页展示 
效果 show-12-120-1.html   show-栏目id-文章id-页数.html 
第二条 
作用 还是内容页展示 
效果 content-12-120-1.html   content-栏目id-文章id-页数.html 
第三条 
作用 列表页展示 
效果 list-12-2.html   show-栏目id-页数.html 
第四条 
作用 关键词列表页展示 
效果 tag-%CA%B1%C9%D0%BC%D2%BE%D3%B7%BD%B0%B8-12-1.html   show-关键词-栏目id-页数.html 
第五条 
作用 评论页展示 
效果 comment-12-120-1.html   comment-栏目id-文章id-页数.html 
第六条 
作用 功能页展示 
效果 register.html   register.html 

转载地址:http://sikya.baihongyu.com/

你可能感兴趣的文章
YII AJAX registerScript
查看>>
ARC forbids explicit message send of 'retainCount'
查看>>
redis单机安装
查看>>
golang内存分配
查看>>
手把手教你----使用Nuget管理自己的项目库
查看>>
trubleshoting方式浅谈
查看>>
编目DB2数据库(原创)
查看>>
企业开发中选择logback而不是log4j的理由
查看>>
信息抽取的五个层次
查看>>
IOS开发--横向流水布局实现
查看>>
【DATAGUARD】手工恢复备库日志中断
查看>>
Kettle访问IDH2.3中的HBase
查看>>
jQuery网页背景灯光闪烁特效
查看>>
【转载】JVM类加载机制小结
查看>>
Android Studio(七):项目从Eclipse到Android Studio迁移
查看>>
在Solr中使用中文分词
查看>>
Eclipse之CTRL+左键直接进入方法函数Implementation
查看>>
groovy/java自实现json解析器(2)JsonObject
查看>>
Linux IP_FORWARD introduce
查看>>
ThinkPHP getBy查询
查看>>