如何将多语言网站重定向到默认语言页面?
我有这个:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不确定我是否理解这个问题,但你可以在你的
root 并更改标头以将用户转发到 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
later you can construct an if/else check to verify the language of the browser etc..