アフィリエイト広告を利用しています

広告

posted by fanblog

rails top ページへのアクセス。

rails でデフォルトで top にアクセスすると、
既存の welcome ページが見えてしまう。
任意のページに飛ばす方法がわかったのでメモ。

既存の index.html を削除する。
rm public/index.html

config/routes.rb を編集する。
# You can have the root of your site routed with map.root -- just remember to delete public/index.html.
# map.root :controller => "welcome"

を、以下のように編集する。例、customers というコントローラーに渡す場合。
# You can have the root of your site routed with map.root -- just remember to delete public/index.html.
map.root :controller => "customers"

apache 等の web server を再起動後、top にアクセスして確認する。
index.html がキャッシュされていたりするので何度かブラウザを再読み込みさせるといいかも。
   
×

この広告は30日以上新しい記事の更新がないブログに表示されております。