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;

猜你喜欢

转载自kola.iteye.com/blog/1419923