2016-09-16 6 views
1

我々のRailsアプリケーションをAWS-EC2にデプロイした後は、私たちのルーティングはすべてうまくいった。 Railsはwww.example.com/をルートにします。 www.example.com/myappをrailsのルートパスにします。Apache 2を使用しているAWS-EC2 Ubuntu Linuxの配備でルートパスを変更する方法は?

ルート

Rails.application.routes.draw do 


    resources :forms do 
    collection do 
     post :accept_item 
    end 
    end 
    resources :stores, m:'true' 
    match '/send_mail', to: 'stores#send_mail', via: 'post' 
    get 'products' => 'products#index', m:'true' 
    get 'stores' => 'stores#index', m:'true' 
    get 'transactions' => 'transactions#index', m:'true' 
    get 'inventories' => 'inventories#index', m:'true' 
    get 'about' => 'sites#about' 
    get 'man' => 'sites#index', m:'true' 
    root 'sites#index' 

end 
+0

あなたは、上記のアプリケーションのためにもあなたのApacheの設定ファイルを貼り付けることはできますか? – error2007s

答えて

1

のような範囲内のルートファイルで、あなたのルートのすべてをラップではない理由:

scope path: '/myapp' do 
    #routes here 
end 
関連する問題