rewrite ^(.*)/tag-(.+).html$ $1/tag.php?name=$2 last;
# end .htaccess rewrite rule
2.然后修改nginx.conf,在需要添加伪静态的虚拟主机的server{}中引入.htaccess文件
server{
include xxxx/.htaccess; ##(把这个改成你.htaccess文件的具体位置)
}
重启nginx.conf即可。
……