如何使用htaccess将www.domain.com/subfolder/重定向到www.domain.com/subfolder/blog.html

时间:2016-07-11 05:27:32

标签: apache .htaccess url-redirection mod-alias

如何将SELECT * FROM table HAVING order_id = MIN(order_id) 重定向到www.domain.com/subfolder/,因为我不能拥有index.html。所以这就是我问这个问题的原因。

2 个答案:

答案 0 :(得分:1)

尝试:

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

这会将/subfolder/重定向到http://www.domain.com/subfolder/blog.html

答案 1 :(得分:1)

创建文件/subfolder/.htaccess(如果该文件不存在)并在顶部添加此行:

DirectoryIndex blog.html