When we define routes in routes.rb using the name like map.some_link we can use the link in two ways- some_link_url() some_link_path. What are the differences between the two? Which is more secure to be used?
|
|
|
I had the same question and I wrote a small post about this in my blog The reason is summarized here (I found this on a forum):
Here is another explanation which says it depends on whether we need to use an absolute URI when linking to an SSL site from a non-SSL site, and vice versa. What I have read so far, doesn't suggest that any of them is more secure than the other. It really comes down to what is the "proper" usage. |
|||||||||||
|
|
|
|||||||
|
|
An example of the difference for a resource called "user":
|
||||
|
|
|
Same answer as Petros, except that modern browsers handle relative redirects just fine. (I'd comment on his answer, but I can't yet.) |
|||
|
|
|
By secure if you mean not exposing all the data passed, then _path is better as it generates a relative url, something like '/login' but _path would give 'http://localhost:3000/login'. Please refer to this blog post i found sometime back regarding the same. When _url is better than _path |
|||||||||
|