我正在构建 wordpress 网站,但还没有完成。我想将访问http://domain.com的访问者重定向到http://domain.com/under-construction但我希望能够看到我的 index.php ...
我尝试将名称更改为 index.html index.htm default.asp .....它们都不起作用。
如果我使用htaccess
它将我所有的页面重定向到 index.html 所以它不起作用。
有任何想法吗?谢谢...
我正在构建 wordpress 网站,但还没有完成。我想将访问http://domain.com的访问者重定向到http://domain.com/under-construction但我希望能够看到我的 index.php ...
我尝试将名称更改为 index.html index.htm default.asp .....它们都不起作用。
如果我使用htaccess
它将我所有的页面重定向到 index.html 所以它不起作用。
有任何想法吗?谢谢...
在您的博客根目录中,将其放在您的 .htaccess 文件中:
DirectoryIndex index.html
按照 Sudhir 的建议在 /.htaccess 中写入。在 /index.php 中写入 require('./under-construction/wp-blog-header.php');。在 /under-construction/ 和 /under-construction/index.php 中没有 .htaccess 写入 require('./wp-blog-header.php');。这就是我的情况。