如何将多语言网站重定向到默认语言页面?

发布于 2024-07-29 02:41:58 字数 492 浏览 1 评论 0原文

我有这个:

http://example.com/EN/index.php - 英文版

http://example.com/PT/index.php - 葡萄牙语版本

我想要的: http://example.com/ 默认情况下会被带到葡萄牙语页面


我也一直在考虑将葡萄牙语页面放在根目录中,将英语页面放在 EN/ 目录中。 这对 SEO 更好吗?

I have this:

http://example.com/EN/index.php - english version

http://example.com/PT/index.php - portuguese version

What I want: http://example.com/ to be taken to the portuguse page by default.


I've also been thinking on having the portuguese page on the root and english in the EN/ directory. is this better for SEO?

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

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

发布评论

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

评论(1

丶情人眼里出诗心の 2024-08-05 02:41:58

我不确定我是否理解这个问题,但你可以在你的
root 并更改标头以将用户转发到 PT/index.php

标头("Location: ./PT/index.php");

稍后您可以构造一个 if/else 检查来验证浏览器的语言等。

iam not sure if i understand the problem, but you can create an index.php in your
root and change the header to forward the user to the PT/index.php

Header("Location: ./PT/index.php");

later you can construct an if/else check to verify the language of the browser etc..

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