How to redirect www.domain.com/subfolder/
to www.domain.com/subfolder/blog.html
, because I cannot have index.html. So that's why I am asking this question.
Try :
RedirectMatch ^/subfolder/?$ http://www.domain.com/subfolder/blog.html
This will redirect /subfolder/
to http://www.domain.com/subfolder/blog.html
.