0
我想在Rails中重定向一些指向我的public
文件夾的鏈接。在rails中匹配url和重定向到url +/index.html
例如:
http://site.com/example
應該重定向到http://site.com/example/index.html
我只是想爲我的公用文件夾內容做到這一點。
我在config/routes.rb中文件試過這樣:
match "*pages" => redirect("/%{pages}/index.html")
但進入重定向循環。 因此http://site.com/example
重定向到http://site.com/example/index.html
其中也重定向到http://site.com/example/index.html/index.html
等。