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

时间:2009-07-23 13:03:18

标签: redirect web multilingual

我有这个:

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

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

我想要的内容 http://example.com/ 默认情况下将被带到 portuguse页面


我一直在考虑在EN /目录中的根和英语上使用葡萄牙语页面。这对SEO更好吗?

1 个答案:

答案 0 :(得分:1)

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

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

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