I have this in my controller but don't work (when I set redirect_to page1_url works well):
render page1_url
in my routes.rb I have a url path:
get "main/page1"
post "main/page1"
match "page1" => 'main#page1'
when I change render in my controller so
render 'main/page1'
works well but the images in the view not appear, please help