如何将所有网络流量重定向到特定页面?
有没有办法将我网站的所有流量重定向到特定页面?我的免费主机确实支持 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
如果您的主机基于 Apache 并支持 mod_rewrite,请使用它。例如。 WordPress 典型的重写,将对不存在的文件/文件夹的请求重定向到index.php,传递原始URL:
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:
如果您的主机运行 Apache 并支持 .htaccess,请将此行添加到您的 .htaccess 文件中
它不需要 mod_rewrite。它确实假设只有未找到的文件才会重定向到index.htm。
If your host runs Apache and supports .htaccess, add this line to your .htaccess file
It does not require mod_rewrite. It does assume that only files that are not found will redirect to index.htm.
我不确定,但元刷新可能适合你
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">
如果您无法使用 .htaccess 或 mod_rewrite 不可用,您可以使用一个简单的 PHP 文件:
index.php
If you can't use .htaccess or mod_rewrite is not available, you can use a simple PHP file:
index.php
您必须返回状态代码为 301-308 的重定向标头。
考虑使用301,因为当你使用301时浏览器会缓存它
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