1

我想重写/屏蔽我文章中的所有外部 url 并添加nofollowtarget="_blank". 因此,指向外部站点的原始链接被加密/屏蔽/重写。

例如:

original link: www.google.com
rewrite it to: www.mydomain.com?goto=google.com

joomla 有一个重写外部链接的插件:rewrite plugin

但我没有使用 joomla。请看一下上面的插件,它正是我想要的。

我想要的是?

$article = "hello this is example article I want to replace all external link http://google.com";
$host = substr($_SERVER['HTTP_HOST'], 0, 4) == 'www.' ? substr($_SERVER['HTTP_HOST'], 0) : $_SERVER['HTTP_HOST'];

if (thisIsNotMyWebsite){
    replace external url

}
4

2 回答 2

0

就像是:

<?php
 $html ='1224 <a href="http://www.google.com">google</a> 567';
$tracking_string = 'http://example.com/track.php?url=';
$html = preg_replace('#(<a[^>]+href=")(http|https)([^>" ]+)("?[^>]*>)#is','\\1'.$tracking_string.'\\2\\3\\4',$html);
echo $html; 

在这里行动:http: //codepad.viper-7.com/7BYkoc

--我的最后一次更新

<?php
$html =' 1224 <a href="http://www.google.com">google</a> 567';

$tracking_string = 'http://example.com/track.php?url=';
$html = preg_replace('#(<a[^>]+)(href=")(http|https)([^>" ]+)("?[^>]*>)#is','\\1 nofollow  target="_blank" \\2'.$tracking_string.'\\3\\4\\5',$html);

echo $html;

http://codepad.viper-7.com/JP8sUk

于 2013-02-20T01:53:27.960 回答
0

您可以使用DOMDocument来解析和遍历文档。

function rewriteExternal($html) {

        // The url for your redirection script
        $prefix = 'http://www.example.com?goto=';

        // a regular expression to determine if
        // this link is within your site, edit for your
        // domain or other needs
        $is_internal = '/(?:^\/|^\.\.\/)|example\.com/';

    $dom = new DOMDocument();

    // Parse the HTML into a DOM
    $dom->loadHTML($html);

    $links = $dom->getElementsByTagName('a');

    foreach ($links as $link) {
            $href = $link->getAttribute('href');
            if (!preg_match($is_internal, $href)) {
                $link->getAttributeNode('href')->value = $prefix . $href;
                $link->setAttributeNode(new DOMAttr('rel', 'nofollow'));
                $link->setAttributeNode(new DOMAttr('target', '_blank'));
            }
    }

    // returns the updated HTML or false if there was an error
    return $dom->saveHTML();
}

这种方法将比使用基于正则表达式的解决方案更可靠,因为它实际上为您解析 DOM,而不是依赖于通常很脆弱的正则表达式。

于 2013-02-20T05:16:46.647 回答