如何设置index.html的默认索引

时间:2012-05-22 02:41:20

标签: php html wordpress

我正在构建wordpress网站,但尚未完成。 我想将访问http://domain.com的访问者重定向到http://domain.com/under-construction,但我希望能够看到我的index.php ...

我尝试将名称更改为index.html index.htm default.asp .....没有一个工作。

如果我使用htaccess,它会将我的所有网页重定向到index.html,因此它无效。

有什么想法吗?感谢...

3 个答案:

答案 0 :(得分:2)

在根博客目录中,将其放在.htaccess文件中:

DirectoryIndex index.html

答案 1 :(得分:1)

答案 2 :(得分:0)

在/htaccess中按照Sudhir的建议写。在/index.php中写require('./ under-construction / wp-blog-header.php');.没有.htaccess in / under-construction /和/under-construction/index.php写需要('./ wp-blog-header.php');.这就是我的情况如何。