Rails 5 启用了 Turbolinks,和 nginx 一起部署后遇到重定向问题。
原始 URL 和 进入 nginx 转发后的 url SecurityError: Failed to execute 'replaceState' on 'History': A history state object with URL
redirect_to new_session_path
这样的写法不行了
手工改为
redirect_to get_host + '/session/new'
有没有根本的解决办法? 求助