我想有SEO優化的url像這樣如何處理Rails資源路徑中的點字符?
http://example.com/sites/1-blau.de/plans
但在路徑事業軌道上的點到塞滿。我如何使用百分比符號形式轉義點,以便它可以工作?
我的路線:
resources :sites, only: [] do
resources :plans, only: [:index, :show] do
end
end
我試圖URI.escape和CGI.escape,既不工作。
URI.escape('a.b')=> "a.b"
CGI.escape('a.b')=> "a.b"
我的想法,我想
Foo.escape('a.b')=> "a%2Eb"
你試過'反斜槓\\'? – Bala
@Bala你是什麼意思? – lulalala
我認爲他的意思是'\ .' – mdesantis