How to nofollow several links in a page with the same extention?

63 views Asked by At

I have several links like this: hxxp://www.mydomain.com/visit/xxxxxxx

Is there a way to make them all nofollow using the /visit/ word?

I want to be able to do this to all the links that I have already, all together, not one by one.

Tks!!

1

There are 1 answers

1
Softwarehuset On

you could do it this way

$actual_link = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF'];
if (strpos($actual_link , '/visit/') !== FALSE)
    print("<meta name=\"robots\" content=\"nofollow\" />");