• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn thêm rel="nofollow" liên kết trong xenforo

Admin

Well-Known Member
Staff member
Administrator
Xenforo hiện đang được sử dụng rất phổ biến và thay thế dần cho vBulletin, nhất là tại Việt Nam. Tuy nhiên, việc spam link để câu backlink xảy ra như một vấn nạn. Do đó, cần có một cơ chế để làm cho điều này vô giá trị. Đó là chèn rel=’nofollow’ trong liên kết của Xenforo.


Bài viết sẽ chỉ các bước thực hiện chi tiết để chèn rel="nofollow" cho link trên Xenforo. (Áp dụng cho Xenforo 1.1.2, các phiên khác cũng tương tự)


- Mở file /library/XenForo/Helper/String.php tìm đoạn code sau:


PHP:
public static function getLinkClassTarget($url)
    {
        $target = '_blank';
        $class = 'externalLink';
        $type = 'external';
 
        $urlInfo = @parse_url($url);
        if ($urlInfo)
        {
            $host = $urlInfo['host'] . (!empty($urlInfo['port']) ? ":$urlInfo[port]" : '');
            if ($host == XenForo_Application::$host)
            {
                $target = '';
                $class = 'internalLink';
                $type = 'internal';
            }
        }
 
        return array($class, $target, $type);
    }
- Thay đoạn sau:
PHP:
$class = 'externalLink';
- Bằng:
PHP:
$class = 'externalLink" rel="nofollow';

Ngoài ra, nếu bạn muốn có ngoại lệ, cho phép một tên miền nào đó rel="dofollow" và target="_blank" để mở 1 cửa số mới khi bấm vào link có thể thêm vào trước:
PHP:
return array($class, $target, $type);
Đoạn code sau:


PHP:
if ($host == "tuoitreit.vn")
{
        $target = '_blank';
        $class = 'internalLink';
        $type = 'internal';
}
Tuỳ vào nhu cầu của diễn đàn mà bạn có thể tuỳ biến.


Chúc các bạn thành công!

Nguồn: VXF
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top