Is there a good way to have link_to
use the full url, including the protocol ( https
over http
) and www
but only on in production environment? Development and Staging can stay the same.
答案 0 :(得分:1)
我想你目前正在使用这种代码:link_to my_ressource_path()
。
你应该做什么:
link_to my_ressource_url()
routes.default_url_options = { host: 'YOU_WEBSITE_URL', protocol: 'https' }
答案 1 :(得分:0)
使用*_url
路由助手与*_path
助手link_to
例如,您可能正在使用link_to users_path
,然后只需使用link_to users_url