通过 apache 或 Rails 重定向域以将本地包含在 url 中

发布于 2024-11-01 22:28:22 字数 467 浏览 0 评论 0原文

我有许多站点在 apache 上的托管 Rails 3 应用程序上运行。

它们可以是多语言的,域的格式如下 www.example1.com/en 、 www.example2.com/de/pages/about-us 、 example3.hosted_sites.com/it/products/cars/hondas

问题是每个域都有一个 www.example1.com 域,并且只使用英语本地。这意味着 2 版本的 www.example1.com 和 www.example1.com/en 等上有重复的内容

如果未指定本地,将 /en 添加到请求的 url 中的最佳方法是什么?

有谁知道 apache 规则可以做到这一点吗?我有很多网站,因此它必须是通用/动态的,因为无法在网址中查找某个网址。

或者最好在我的 Rails 3 应用程序中通过 before 过滤器完成此操作?有人知道怎么做吗?

多谢 瑞克

I have many sites that run on a hosted rails 3 application on apache.

They can be multi-lingual and the domains are in this format www.example1.com/en , www.example2.com/de/pages/about-us , example3.hosted_sites.com/it/products/cars/hondas

The problem is that each domain has a www.example1.com domain as well that just uses the english local. This means that there is duplicate content on the 2 version ed www.example1.com and www.example1.com/en etc

What is the best way to add the /en into the requested url if a local is not specified ?

does anyone know a apache rule to do this ? i have many sites so its got to be generic / dynamic as cant look for a certain url in the url.

Or is this best done in my rails 3 app via a before filter ? anyone know how ?

Thanks alot
Rick

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

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

发布评论

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

评论(1

贪恋 2024-11-08 22:28:22

我有类似的情况并使用这个插件。它使用一个默认值处理您翻译的路线,例如

domain/someid --> english
domain/es/someid --> spanish
domain/de/someid --> german

https://github.com/raul/translate_routes

I have a similar scenario and use this plugin. It handles your translated routes with one default, eg

domain/someid --> english
domain/es/someid --> spanish
domain/de/someid --> german

https://github.com/raul/translate_routes

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