jpl80 0 Newbie Poster

So, I want to redirect traffic from:

http://somewhere/writing/index.html

to:

http://overhere/blogs/

I used this in my .htaccess file in the writing directory

RewriteRule ^index.*$ http://overhere/blogs/ [R=301,L]

which works fine unless someone just visits:

http://somewhere/writing/

which takes them to the default 'index.html' page

Can anyone help?