我们成功地把我们的铁路3.1.4 app子放在了12.04号浮游艇上。 生产。 rb 我们确定:
RAILS_RELATIVE_URL_ROOT="/by"
我们可以 log,走到主角。 然而,根据我们的习俗观点调整的所有路线——主要菜单的手脚不可行。 这一观点的目的就是要纪念即将进入的下一个道路,并牢记如何支持(如背)。 这里是法典(相关法典)
def view_handler
index = params[:index].to_i
url = params[:url]
if index == 1 #forword
session[:page_step] += 1
session[( page + session[:page_step].to_s).to_sym] = url
end
#redirect to the page by url
redirect_to url
end
这里指的是“不工作”的链接(404个未发现错误):
<%= link_to Projects , "/view_handler?index=1&url=#{projects_path}" %>
显示的URL(不正确)。 404人未找到返回:
http://154.248.209.181/view_handler?index=1&url=/by/projects
The following is the working URL for the above (manually into):
http://154.248.209.181/by/projects
对我们来说,从头脑看,项目“寄回/逐/项目”似乎令人奇怪。 只有项目(通过游艇路线)才能返回。
Before deploying to suburi, the rails 3.1.4 app was deployed and worked fine in root directory.
我们的建立可能会有什么错误? 非常感谢。