Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个这样的链接:hxxp://www.mydomain.com/visit/xxxxxxx
有没有办法让他们都使用 /visit/ 字词nofollow?
我希望能够对我已经拥有的所有链接执行此操作,所有链接,而不是一个一个。
谢!!
你可以这样做
$actual_link = 'http://'.$_SERVER['HTTP_HOST'].$_SERVER['PHP_SELF']; if (strpos($actual_link , '/visit/') !== FALSE) print("<meta name=\"robots\" content=\"nofollow\" />");