有人可以提供.htaccess规则,以便我的index.php覆盖我的index.html吗?
当我转到http://localhost
时,意味着提供了index.php而不是index.html。
答案 0 :(得分:4)
那将完成这项工作:
DirectoryIndex index.php index.html
如果没有index.php,则会提供index.html文件。
答案 1 :(得分:2)
这可能有效......
RewriteEngine On
RewriteBase /
RewriteRule ^index.html$ index.php [R=301,L]
答案 2 :(得分:0)
在apache配置文件(或.htaccess)中,将DirectoryIndex设置为index.php,而不是index.html