• 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 tạo url tiếng việt không dấu cho xenforo

Admin

Well-Known Member
Staff member
Administrator
- Trước hết mình xin nói với các bạn, sở dĩ tại sao ta phải làm việc này, đó là để tốt cho việc SEO website của chúng ta. Vậy SEO là gì? Các bạn đọc trong topic về SEO nhé.
- Đầu tiên các bạn cần download Notepad++, cài đặt sau đó mở /Library/Xenforo/Link.php bằng Notepad++, trên thanh menu của Notepad++ các bạn chỉnh Encoding > Encode in UTF-8 without BOM.
- Tiếp theo các bạn tìm đến dòng code:

PHP:
if ($romanize)
 
{
 
$title = utf8_romanize(utf8_deaccent($title));
 
}
Thêm vào bên dưới đoạn code trên đoạn code sau:

PHP:
$aPattern = array (
 
"a" => "á|à|ạ|ả|ã|ă|ắ|ằ|ặ|ẳ|ẵ|â|ấ|ầ|ậ|ẩ|ẫ|Á|À|Ạ|Ả|Ã|Ă|Ắ|Ằ|Ặ|Ẳ|Ẵ|Â|Ấ|Ầ|Ậ|Ẩ|Ẫ",
 
"o" => "ó|ò|ọ|ỏ|õ|ô|ố|ồ|ộ|ổ|ỗ|ơ|ớ|ờ|ợ|ở|ỡ|Ó|Ò|Ọ|Ỏ|Õ|Ô|Ố|Ồ|Ộ|Ổ|Ỗ|Ơ|Ớ|Ờ|Ợ|Ở|Ỡ",
 
"e" => "é|è|ẹ|ẻ|ẽ|ê|ế|ề|ệ|ể|ễ|É|È|Ẹ|Ẻ|Ẽ|Ê|Ế|Ề|Ệ|Ể|Ễ",
 
"u" => "ú|ù|ụ|ủ|ũ|ư|ứ|ừ|ự|ử|ữ|Ú|Ù|Ụ|Ủ|Ũ|Ư|Ứ|Ừ|Ự|Ử|Ữ",
 
"i" => "í|ì|ị|ỉ|ĩ|Í|Ì|Ị|Ỉ|Ĩ",
 
"y" => "ý|ỳ|ỵ|ỷ|ỹ|Ý|Ỳ|Ỵ|Ỷ|Ỹ",
 
"d" => "đ|Đ",
 
);
 
while(list($key,$value) = each($aPattern))
 
{
 
$title = @ereg_replace($value, $key, $title);
 
}
Chúc các bạn thành công.
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top