php htaccess 重定向
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者在旧站点编辑你的index.php
or edit your index.php at your old site
重定向 http://oldsite.com http://newsite.com
Redirect http://oldsite.com http://newsite.com
如果您有逐页映射,您可以这样做:
第一部分例如,
index.php
是本地名称index.asp
是远程名称,< code>[R=301] 表示您正在使用 301 作为RFC2616 中规定,这意味着文件已永久移动。如果所有文件以某种方式完美映射到另一台服务器,您可以这样做:
在这里您捕获所有请求并说现在可以在 example.com 上找到该文件,无论它叫什么。
祝你好运。
If you have a page by page mapping you can do it like this:
The first part ex,
index.php
is the local nameindex.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:
Here you capture all requests and say that the file can now be found on example.com whatever it is called.
Best of luck.