Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on a website that allows users to create an account. One of the attributes when creating a user is a users personal website. When I try to use the users website like this:

<%= link_to @user.site, @user.url %>

The url that gets generated is: http://0.0.0.0:3000/www.userswebsite.com

I think this is because of the @user part of the link_to... but how can I get this to link to www.userwebsite.com ?

share|improve this question

2 Answers

up vote 9 down vote accepted

Looks like you need to stick the protocol on your link. E.g. you have www.userswebsite.com in your database, it should be http://www.userswebsite.com

share|improve this answer
ohh, awesome thanks~! – thedeepfield Feb 16 '11 at 3:30
Superb, just did the magic for me :-) +1 :-) – Keen Learner Mar 18 at 14:41

You can prepend url with protocol if it's absent:

module UrlHelper
  def url_with_protocol(url)
    /^http/.match(url) ? url : "http://#{url}"
  end
end

And then:

link_to @user.site, url_with_protocol(@user.url), :target => '_blank'
share|improve this answer
2  
Use :target => '_blank' instead of :target => :blank. It doesn't work as expected, you can try it by opening the same link from the newly created window. – Donatas Stundys Apr 2 '12 at 2:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.