I need to create a link_to to a different subdomain.
This is what I came up with:
= link_to "Link to Subdomain", root_path(subdomain: "abc", param1: "value1", param2: "value2")
It is not working though. I get redirected to:
http://lvh.me:3000/?param1=value1¶m2=value2
Note: The as param passed subdomain
is not being displayed in the url. Neither as subdomain nor as parameter.
Instead I want to get redirected to the following URL:
http://abc.lvh.me:3000/?param1=value1¶m2=value2
Ah... you are using root_path
which by definition is a relative url (ie it does not contain the domain)... you probably want root_url
which will fully specify the domain (and subdomain).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With