当前位置: 代码迷 >> Web前端 >> 用Nginx的友人可以参考
  详细解决方案

用Nginx的友人可以参考

热度:117   发布时间:2012-10-31 14:37:31.0
用Nginx的朋友可以参考

用Nginx的朋友可以参考,加到nginx.conf相应主机server段配置中即可!

复制内容到剪贴板
代码:
location / {
###以下为PHPCMS 伪静态化rewrite规则
rewrite ^(.*)show-([0-9]+)-([0-9]+)\.html$ $1/show.php?itemid=$2&page=$3;
rewrite ^(.*)list-([0-9]+)-([0-9]+)\.html$ $1/list.php?catid=$2&page=$3;
rewrite ^(.*)show-([0-9]+)\.html$ $1/show.php?specialid=$2;

####以下为PHPWind 伪静态化rewrite规则
rewrite ^(.*)-htm-(.*)$ $1.php?$2 last;
rewrite ^(.*)/simple/([a-z0-9\_]+\.html)$ $1/simple/index.php?$2 last;