Search code examples
apache.htaccesshttp-redirectmod-alias

How to redirect www.domain.com/subfolder/ to www.domain.com/subfolder/blog.html using htaccess


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.


Solution

  • Try :

    RedirectMatch ^/subfolder/?$ http://www.domain.com/subfolder/blog.html
    

    This will redirect /subfolder/ to http://www.domain.com/subfolder/blog.html .