Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Rails: link_to - passing a subdomain

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&param2=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&param2=value2
like image 396
heroxav Avatar asked Feb 03 '17 00:02

heroxav


1 Answers

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).

like image 108
Taryn East Avatar answered Sep 30 '22 10:09

Taryn East