当用户访问我的网站时,显示的网址为http://example.com。
如何自动将/index.php添加到网址末尾以使其成为http://example.com/index.php?
答案 0 :(得分:2)
使用DirectoryIndexRedirect
指令
DirectoryIndexRedirect on
答案 1 :(得分:0)
您可以尝试这样的事情:
RewriteEngine On
RewriteRule ^/$ http://%{HTTP_HOST}/index.php [R=301,L]
但你为什么要这样呢?