请教一下:为什么我本地的rewrite不起作用??

请教一下:为什么我本地的rewrite不起作用??

我用的是WINXP的系统
php   5.0
apache   2.0

LoadModule   rewrite_module   modules/mod_rewrite.so   是打开的

先测试了一个最简单的URL重定向
把   http://localhost/test.html   转向到   http://locahost/  

在配置文件httpd.conf加了几行代码,重启apache后访问http://localhost/test.html显示无法访问。哪位能帮忙指点下,先谢谢了

<IfModule   mod_rewrite.c>
      RewriteEngine   on  
      RewriteRule   ^/test.html$   ./   [R]
</IfModule>
ding
RewriteEngine   on  
      RewriteRule   ^/test.html$   ./   [R]

去掉 <IfModule   mod_rewrite.c> </IfModule>

try