• 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.

vt.Phong end html for XenForo | Đuôi .html cho XenForo

Admin

Well-Known Member
Staff member
Administrator
Giới Thiệu :
Tutorial này sẽ hướng dẫn các bạn config lại đường dẫn diễn đàn của XenForo của mình thêm .html vào cuối url bài viết.
Hướng Dẫn :
- Login host truy cập theo đường dẫn sau :

/library/XenForo/Link.php
-Tìm đến function buildBasicLinkWithIntegerParam :
Thay bằng :
PHP:
public static function buildBasicLinkWithIntegerParam($prefix, $action, $extension, $data, $intField, $titleField = '')    {
        if ((is_array($data) || $data instanceof ArrayAccess) && isset($data[$intField]))
        {
            self::prepareExtensionAndAction($extension, $action);
 
            $title = (($titleField && !empty($data[$titleField])) ? $data[$titleField] : '');
            if($action=="" && $extension==""){
            return "$prefix/" . self::buildIntegerAndTitleUrlComponent($data[$intField], $title) . ".html";
            }else{
            return "$prefix/" . self::buildIntegerAndTitleUrlComponent($data[$intField], $title) . "/$action$extension";
            }
        }
        else
        {
            return false;
        }
    }
Update :
/library/XenForo/Link.php
-Tìm đến function buildBasicLinkWithIntegerParam :
Cụ thể là dòng thứ 644 (open note pad ++)
Thay bằng:
PHP:
public static function buildBasicLinkWithIntegerParam($prefix, $action, $extension, $data, $intField, $titleField = ''){
if ((is_array($data) || $data instanceof ArrayAccess) && isset($data[$intField]))
{
self::prepareExtensionAndAction($extension, $action);
 

$title = (($titleField && !empty($data[$titleField])) ?...
Chúc các bạn thành công
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top