.htaccess重写规则有关问题

.htaccess重写规则问题
如 http://www.test.com/url.php 如果用 http://www.test.com/url/index.html 可以访问,重写规则该如何写?

按照如下来写规则,无法访问http://www.test.com/url/index.html 

RewriteRule ^url/index.html$ url.php

请指教!




------解决思路----------------------
这样应该可以
RewriteRule ^*\/index.html$ http://www.test.com/url.php[L]

下边的详细语法可供参考:
http://blog.****.net/xiaobuxun/article/details/43452019