如何重定向到主页

发布于 2024-10-01 01:49:47 字数 92 浏览 0 评论 0原文

我将迁移到一个新服务器,我需要确保每个人,无论他们来到网站的哪个位置,都会被重定向到特定页面。我想我需要用 .htaccess 来做,有什么建议吗?

谢谢

I will be moving to a new server and I need to make sure that everyone, no matter where on the site they come are redirected to a particular page. I think I need to do it with .htaccess Any suggestions how?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

围归者 2024-10-08 01:49:47

尝试:

RewriteBase /
RewriteRule !maintenance\.php /maintenance.php

Try:

RewriteBase /
RewriteRule !maintenance\.php /maintenance.php
九歌凝 2024-10-08 01:49:47

创建一个名为 Maintenance.php 的文件。

然后将

header("Location:maintenance.php");

index.php放入根文件夹中。

:)

create a file with name maintenance.php.

Then put

header("Location:maintenance.php");

in index.php in your root folder .

:)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文