RewriteRule不能在.htaccess中工作,但没有错误

我有一个重写规则,它不工作,但它不会抛出任何错误,所以我无法弄清楚。 .htaccess文件如下所示:

 RewriteEngine On RewriteBase /site/ RewriteRule ^help/(.*)\.html$ /site/help.php?topic=$1 [L] 

另外,在httpd.conf

 <Directory "/Users/user/Sites"> Options Indexes FollowSymLinks ExecCGI Includes AllowOverride All Order allow,deny Allow from all </Directory> 

编辑:我有XAMPP(1.7.3)在Mac OS 10.6.7

我究竟做错了什么?
谢谢!