0

Somehow Google has indexed the wrong URL. No idea how, but alas, here we are.

I need to forward all URLs with this setup...

example.com/features.reports to example.com/features/reports

The constant here is the domain and "features"...basically anything with features. should forward to features/

How can I set that up in routes?

4

1 に答える 1

2

これを試して:

match "/features.*path" => redirect("/features/%{path}")

これにより、301の永続的に移動されたリダイレクトが返されます。

リダイレクトとグロブの詳細については、 Railsガイドを参照してください。

于 2012-11-19T17:51:47.797 に答える