vote up 0 vote down star

I have people posting their website address but variations are posted such as:

When I link to an address without http:// it takes the link as internal

<a href="theirsite.com">their site</a>

sending people to something like: http://mysite.com/thiersite.com

Another option I've tried is linking to something like mysite.com/?link=theirsite.com - This way I can do some link tracking etc then redirect people to the link but it has the same problem:

//do some tracking etc here
$link =$_GET['link'];
header("Location: $link");
flag

70% accept rate
Tell us what language your using, and we can help you with the code. – Michael Pryor Apr 29 at 13:56
I suppose it’s PHP. – Gumbo Apr 29 at 14:08
This is so PHP-style tagged. There is no need to tag this question as http. It's abusive. – Andrei Rinea May 10 at 0:58

7 Answers

vote up 4 vote down check

No need to use regular expressions here. PHP has URL validation built in.

Filter Var

var_dump((bool) filter_var('http://www.website.com', FILTER_VALIDATE_URL, FILTER_FLAG_HOST_REQUIRED));
var_dump((bool) filter_var('http://website.com', FILTER_VALIDATE_URL, FILTER_FLAG_HOST_REQUIRED));
var_dump((bool) filter_var('www.website.com', FILTER_VALIDATE_URL, FILTER_FLAG_HOST_REQUIRED));
var_dump((bool) filter_var('website.com', FILTER_VALIDATE_URL, FILTER_FLAG_HOST_REQUIRED));

Output

bool(true)
bool(true)
bool(false)
bool(false)

Please do not jump straight to regular expressions for validation, PHP has a lot of methods built in to deal with these scenarios.

-Mathew

link|flag
But regular expressions are language independent. – Gumbo Apr 29 at 19:24
To be fair, he posted it with a PHP tag and I've given him a PHP answer. It's a non-issue. – The Pixel Developer Apr 29 at 21:35
vote up 2 vote down

Please note, there's a real difference between www.site.com and site.com, usually both works, but on some website each leads to a different path (some badly defined website won't work without the www for instance). So You can't always prepend 'www' to the input.

Another note, do handle prepending space, so that ' http://' would not be prepended with additional http://.

My Javascript Regex based solution

'http://'+field.replace(/^ *http:\/\//,'')

You can verify that on the client size, just put a code in similar spirit on the onSubmit of your form.

link|flag
vote up 2 vote down

I would use something like this:

$link = str_replace(array("\r", "\n"), '', trim($link));
if (!preg_match('/^https?:\/\//', $link)) {
    $link = 'http://'.$link;
}
header('Location: '.$link);

Another way would be the parse_url function to parse the given URL, see what parts are missing and add them.

link|flag
might need to consider trailing space as noted by Elazar and also there was a small typo repalce. Cheers. – Peter Apr 29 at 14:13
Have you noticed the trim? – Gumbo Apr 29 at 14:22
oops, silly me! – Peter Apr 30 at 3:08
vote up 3 vote down

put "http://" in the field by default, then validate the URL with something like

if(eregi("^((http|https)://)?([[:alnum:]-])+(\.)([[:alnum:]]){2,4}([[:alnum:]/+=%&_.~?-]*)$", stripslashes(trim($_POST['link'])))){
    //link is valid
}

if link does not validate, just print them a message saying "the link you entered is invalid, make sure it starts with 'http://'"

link|flag
I like how this will also take care of the cases when people write "no" or "not yet" or stuff like that. – Fredrik Mörk Apr 29 at 14:08
+1 For the default value for the URL field. But I wouldn’t use eregi. – Gumbo Apr 29 at 14:13
good point with people posting "no" or "not yet"... – Peter Apr 29 at 14:16
No need to use regular expressions in this case. PHP has built in URL validation using the "filter" extension. See my answer below. – The Pixel Developer Apr 29 at 14:47
1  
ereg is dead, you should use PCRE instead. – vartec Apr 29 at 15:20
vote up 1 vote down

You could use regular expressions to test input

Regex exp = new Regex(
    @"http://(www\.)?([^\.]+)\.com",
    RegexOptions.IgnoreCase);
link|flag
Hopefully the .com is just an example :D – OregonGhost Apr 29 at 13:59
vote up 1 vote down
if not "://" in users_url:
    users_url = "http://" + users_url

...or equivalent, in the language of your choice.

link|flag
vote up 1 vote down

I would provide some validation or sanitation. Use a regex to see if http:// starts with it. If it doesn't, either throw an validation error or put http:// at the start.

link|flag

Your Answer

Get an OpenID
or

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