nginx 301到 旧url 301到新的

http://m。123。com/index.php?&a=show&catid=7&id=3009 url为动态 php
http://m。123。om/7/3009.html 静态url
需要把动态url nginx 301到 静态url
rewrite ^/index.php?m=content&c=index&a=show&catid=([0-9])&id=([0-9]) /$1/$2.html permanent;
rewrite ^/index.php?m=content&c=index&a=show&catid=([0-9])&id=([0-9])&page=([0-9]) /$1/$2_$3.html permanent;
301不成功!
求解答!

不知道你这个问题是否已经解决, 如果还没有解决的话:

如果你已经解决了该问题, 非常希望你能够分享一下解决方案, 写成博客, 将相关链接放在评论区, 以帮助更多的人 ^-^