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