不知何故,谷歌索引了错误的 URL。不知道怎么做,但唉,我们到了。
我需要使用此设置转发所有 URL ...
example.com/features.reports
至example.com/features/reports
这里的常数是域和“特征”......基本上任何features.
应该转发到features/
如何在路线中进行设置?
不知何故,谷歌索引了错误的 URL。不知道怎么做,但唉,我们到了。
我需要使用此设置转发所有 URL ...
example.com/features.reports
至example.com/features/reports
这里的常数是域和“特征”......基本上任何features.
应该转发到features/
如何在路线中进行设置?
尝试这个:
match "/features.*path" => redirect("/features/%{path}")
这将返回一个 301 永久移动的重定向。
有关重定向和通配符的更多信息,请参阅Rails 指南。