麻烦问一个APAHCE下伪静态的问题,麻烦大家帮忙

麻烦问一个APAHCE下伪静态的问题,麻烦大家帮忙

服务器是APAHCE+tomcat

想实现伪静态,,但参数总弄不对,,希望大家给帮个忙.


这是网址格式:http://www.a.com/setout?action=index&code=4102021001

想让网页上现实成:http://www.a.com/4102021001.html



其它提示:
  RewriteRule ^/student,Student_Login\.html$ /student/login\.jsp
写的这一条用 http://www.a.com/student,Student_Login.html 访问正常.


在apache2.2上应该如何设置?  


表达式:
  RewriteEngine On
  RewriteRule ^/(\d+)\.html $ /setout\?action=index&code=$1

不起作用...请问我应该如何写?????
没人能帮帮我吗?
rewriteengine on  
rewritebase /
RewriteRule ^([0-9]+)\.html$ setout?action=index&code=$1[L,NC,QSA]