php htaccess 重定向

发布于 2024-09-18 15:35:48 字数 142 浏览 6 评论 0原文

我有一个 php 网站。 现在我想将旧网站网址重定向到新网址。

每当用户使用浏览器 url 在地址栏中输入我的旧网站 url 时,都必须重定向到我的新 url。

我如何使用 .htaccess 文件执行此操作。

提前致谢。

i have a site in php.
now i want to redirect my older site url to new url.

whenever user enter my old site url in address bar using browser url must be redirect to my new url.

How can i do this using .htaccess file.

Thanks in advance.

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

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

发布评论

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

评论(3

べ繥欢鉨o。 2024-09-25 15:35:49

或者在旧站点编辑你的index.php

<php  
header('Location: http://newsite.com');
?>

or edit your index.php at your old site

<php  
header('Location: http://newsite.com');
?>
青瓷清茶倾城歌 2024-09-25 15:35:48

如果您有逐页映射,您可以这样做:

RewriteEngine on
RewriteRule index.php http://www.example.com/index.asp [R=301]
RewriteRule prods.html http://www.example.com/products.xhtml [R=301]

第一部分例如,index.php 是本地名称 index.asp 是远程名称,< code>[R=301] 表示您正在使用 301 作为RFC2616 中规定,这意味着文件已永久移动。

如果所有文件以某种方式完美映射到另一台服务器,您可以这样做:

RewriteEngine on
RewriteRule (.*) http://www.example.com/$1 [R=301]

在这里您捕获所有请求并说现在可以在 example.com 上找到该文件,无论它叫什么。

祝你好运。

If you have a page by page mapping you can do it like this:

RewriteEngine on
RewriteRule index.php http://www.example.com/index.asp [R=301]
RewriteRule prods.html http://www.example.com/products.xhtml [R=301]

The first part ex, index.php is the local name index.asp is the remote name, [R=301] Means you are using a 301 as prescribed in RFC2616 meaning the file has moved permanently.

If all the files map perfectly in some way to another server you can do it like this:

RewriteEngine on
RewriteRule (.*) http://www.example.com/$1 [R=301]

Here you capture all requests and say that the file can now be found on example.com whatever it is called.

Best of luck.

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