通过 apache 或 Rails 重定向域以将本地包含在 url 中
我有许多站点在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有类似的情况并使用这个插件。它使用一个默认值处理您翻译的路线,例如
https://github.com/raul/translate_routes
I have a similar scenario and use this plugin. It handles your translated routes with one default, eg
https://github.com/raul/translate_routes