1

Google ボットが次のような Ajax アドレスを開こうとしています: http://ots.wlasowy.ru/ru?_escaped_fragment_=/ru/pages/service のようなレコードがmatch 'pages/service', :to => 'pages#service'ありroutes.rbます。

他に何を追加する必要がありroutes.rbますか?

私のroutes.rb:

scope "(:locale)", :locale => /en|ru/ do

match '/pages/news' => 'pages#news'
match '/articles/page/:page',  :to => 'pages#news'
match '/pages/home' => 'pages#home'

resources :pages
resources :articles
resources :vacancies

mount Ckeditor::Engine => '/ckeditor'

mount RailsAdmin::Engine => '/admin', :as => 'rails_admin'

devise_for :users

devise_scope :user do
  get "sign_in", :to => "devise/sessions#new"
end

end
4

1 に答える 1

0

route.rb を追加し、ファイルを表示します。コードにいくつかのバグがあります。

于 2012-09-05T17:39:30.033 に答える