0

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

我尝试将名称更改为 index.html index.htm default.asp .....它们都不起作用。

如果我使用htaccess它将我所有的页面重定向到 index.html 所以它不起作用。

有任何想法吗?谢谢...

4

3 回答 3

2

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

DirectoryIndex index.html
于 2012-05-22T02:42:32.967 回答
1

您可以使用一个插件:http ://wordpress.org/extend/plugins/maintenance-mode/

于 2012-05-22T02:44:02.173 回答
0

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

于 2012-05-22T03:11:45.110 回答