Rails _url helper和force_ssl

时间:2018-01-10 16:19:05

标签: ruby-on-rails url helpers

我在production.rb中有以下内容:

config.force_ssl = true

现在,使用时

path_to_page_url(@record)

在电子邮件中,生成的网址如下所示:

https://example.com

超时。

但是,https://www.example.com没有超时。

有没有办法在网址助手上添加“www”前缀?

1 个答案:

答案 0 :(得分:1)

添加production.rb文件:

config.action_mailer.default_url_options = { host: 'www.example.com', protocol: 'https'}