我将转移到一台新服务器,我需要确保每个人,无论他们来到哪个站点,都会被重定向到特定页面。我想我需要用.htaccess做任何建议如何?
由于
答案 0 :(得分:2)
尝试:
RewriteBase /
RewriteRule !maintenance\.php /maintenance.php
答案 1 :(得分:1)
创建一个名为maintenance.php的文件。
然后把
header("Location:maintenance.php");
在根文件夹的index.php中。
:)