0

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 Answers1

0

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\" />");
Softwarehuset
  • 815
  • 4
  • 10