如何将所有网络流量重定向到特定页面?

发布于 2024-08-09 07:29:12 字数 59 浏览 8 评论 0原文

有没有办法将我网站的所有流量重定向到特定页面?我的免费主机确实支持 PHP。不确定这是否适合于此。谢谢。

Is there a way to redirect all traffic to my website to a specific page? My free host does support PHP. Not sure if that is what would be appropriate for this or not. Thank you.

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

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

发布评论

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

评论(5

遗心遗梦遗幸福 2024-08-16 07:29:12

如果您的主机基于 Apache 并支持 mod_rewrite,请使用它。例如。 WordPress 典型的重写,将对不存在的文件/文件夹的请求重定向到index.php,传递原始URL:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>

If your host is based on Apache and supports mod_rewrite, use that. Eg. the wordpress typical rewite, that redirects requests to non-existing files/folders to index.php, passing on the original URL:

<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
梦幻的味道 2024-08-16 07:29:12

如果您的主机运行 Apache 并支持 .htaccess,请将此行添加到您的 .htaccess 文件中

ErrorDocument 404 /index.htm

它不需要 mod_rewrite。它确实假设只有找到的文件才会重定向到index.htm。

If your host runs Apache and supports .htaccess, add this line to your .htaccess file

ErrorDocument 404 /index.htm

It does not require mod_rewrite. It does assume that only files that are not found will redirect to index.htm.

我的痛♀有谁懂 2024-08-16 07:29:12

我不确定,但元刷新可能适合你



I'm not sure but meta refresh might work for you


<META http-equiv="refresh" content="0;URL=http://some-url.com/some-page.html">

甜味超标? 2024-08-16 07:29:12

如果您无法使用 .htaccess 或 mod_rewrite 不可用,您可以使用一个简单的 PHP 文件:

index.php

<?php
header("Location: http://www.example.com/page");
?>

If you can't use .htaccess or mod_rewrite is not available, you can use a simple PHP file:

index.php

<?php
header("Location: http://www.example.com/page");
?>
命比纸薄 2024-08-16 07:29:12

您必须返回状态代码为 301-308 的重定向标头。
考虑使用301,因为当你使用301时浏览器会缓存它

<?php
   header("Location: http://www.example.com/about.php",true,302);
   exit;
?>

you have to return redirect header with status code 301-308.
just consider to use 301, because browser will cache it when you use 301

<?php
   header("Location: http://www.example.com/about.php",true,302);
   exit;
?>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文