2010年06月20日
rails top ページへのアクセス。
rails でデフォルトで top にアクセスすると、
既存の welcome ページが見えてしまう。
任意のページに飛ばす方法がわかったのでメモ。
既存の index.html を削除する。
config/routes.rb を編集する。
を、以下のように編集する。例、customers というコントローラーに渡す場合。
apache 等の web server を再起動後、top にアクセスして確認する。
index.html がキャッシュされていたりするので何度かブラウザを再読み込みさせるといいかも。
既存の 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"
# 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"
map.root :controller => "customers"
apache 等の web server を再起動後、top にアクセスして確認する。
index.html がキャッシュされていたりするので何度かブラウザを再読み込みさせるといいかも。
【(カテゴリなし)の最新記事】
投稿者:tech|23:00