我正在尝试将网站的“主页”重写为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]
哪个不起作用。
有人可以给我一个想法,找到解决这个问题的正确方法吗?感谢
答案 0 :(得分:0)
RewriteRule ^/$ /dir/userdo?action=home [L]
可以使用DirectoryIndex
指令更改默认的index.html。