Apache重写,主页

时间:2011-12-08 03:06:36

标签: apache url mod-rewrite

我正在尝试将网站的“主页”重写为www.example.com

现在可以通过www.example.com/dir/userdo?action=home

访问主页

我的想法www.example.com真的是www.example.com/index.html,因为apache会自动隐藏/index.html,所以我试过了

RewriteRule /index.html /dir/user.do?action=home [PT,L]

哪个不起作用。

有人可以给我一个想法,找到解决这个问题的正确方法吗?感谢

1 个答案:

答案 0 :(得分:0)

RewriteRule ^/$ /dir/userdo?action=home [L]

可以使用DirectoryIndex指令更改默认的index.html。