我有一个rails应用程序
salmonfishing.com
有一个数据库。我有另一个应用程序
salmonfishing-test.com
我如何为根网址添加别名,以便在用户转到
时http://salmonfishing-test.com
来自
的资产和数据http://salmonfishing.com database
将被使用。
我的database.yml指向'salmonfishing'数据库,但生成的图像的URL是
http://salmonfishing-test/bigfish.png
这是预期的,但在内部我希望将其别名为
http://salmonfishing.com/bigfish.png
...基本上所有资产和数据都来自'salmonfishing'数据库,并保存到它。涉及设置子路径的各种方式,但不是资产和数据的根。
干杯,
Jet
答案 0 :(得分:0)
如果您的唯一问题是资产网址中的域名错误,您可以在环境配置文件中更改它:config/environments/[whatever].rb
:
config.action_controller.asset_host = "http://salmonfishing.com"
此行已存在于production.rb
中,但已将其注释掉。