当转到http:// localhost时,htaccess规则要使index.php而不是index.html

时间:2012-02-20 22:09:14

标签: .htaccess xampp localhost

有人可以提供.htaccess规则,以便我的index.php覆盖我的index.html吗?

当我转到http://localhost时,意味着提供了index.php而不是index.html。

3 个答案:

答案 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

这是一个例子: http://www.javascriptkit.com/howto/htaccess6.shtml