用了 Rewrite,但.htaccess里的正则表达式没反应,请问错在哪里?

 RewriteEngine on
#RewriteRule ^(.*) http://www.xxx.com/ [L]
RewriteRule  ^/d/file/(.*)$  http://www.xxx.com/d/file/$1

其中第二行的 正则表达式测试是没问题的,但第三行就是没反应。请问错在哪里?
服务器是windows 2003 + IIS
Rewrite 的配置是没问题的,第二行 RewriteRule ^(.*) http://www.xxx.com/ [L] 有作用,就是第三行没作用

正则写错了
^/d/file/(.*)$

改为:
^/d/file/(.*)