读书人

apache跟ngnix的伪静态设置

发布时间: 2012-07-27 11:03:00 作者: rapoo

apache和ngnix的伪静态设置
论坛里的一个插件rewrite规则

Apache:
RewriteRule ^(.*)/tel114\.html\?*(.*)$ $1/plugin.php?id=sanree_tel114&$2
RewriteRule ^(.*)/tel114-(index|view)-(.+)\.html\?*(.*)$ $1/plugin.php?id=sanree_tel114&mod=$2&tid=$3&$4


Ngnix:
rewrite ^([^\.]*)/tel114\.html\?*(.*)$ $1/plugin.php?id=sanree_tel114&$2 last;
rewrite ^([^\.]*)/tel114-(index|view)-(.+)\.html\?*(.*)$ $1/plugin.php?id=sanree_tel114&mod=$2&tid=$3&$4 last;

读书人网 >Apache

热点推荐