简体   繁体   中英

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.

Try :

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

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

创建一个文件/subfolder/.htaccess如果不存在),并在顶部添加以下行:

DirectoryIndex blog.html

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM