If you want the URL that appears in the English character mode (For countries with individual characters), please do the following (I applied for Vietnam)
Please copy the file attached below, to override the installation directory of your forums ROOT
vbtube_functions.php
Note:
PHP Code:
$translite_simbols = array (
'#(?|?|ạ|ả|?|?|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ)#',
'#(?|?|ẹ|ẻ|ẽ|?|ề|ế|ệ|ể|ễ)#',
'#(?|?|ị|ỉ|ĩ)#',
'#(?|?|ọ|ỏ|?|?|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ)#',
'#(?|?|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ)#',
'#(ỳ|?|ỵ|ỷ|ỹ)#',
'#(đ)#',
'#(?|?|Ạ|Ả|?|?|Ầ|Ấ|Ậ|Ẩ|Ẫ|Ă|Ằ|Ắ|Ặ|Ẳ|Ẵ)#',
'#(?|?|Ẹ|Ẻ|Ẽ|?|Ề|Ế|Ệ|Ể|Ễ)#',
'#(?|?|Ị|Ỉ|Ĩ)#',
'#(?|?|Ọ|Ỏ|?|?|Ồ|Ố|Ộ|Ổ|Ỗ|Ơ|Ờ|Ớ|Ợ|Ở|Ỡ)#',
'#(?|?|Ụ|Ủ|Ũ|Ư|Ừ|Ứ|Ự|Ử|Ữ)#',
'#(Ỳ|?|Ỵ|Ỷ|Ỹ)#',
'#(Đ)#',
"/[^a-zA-Z0-9\-\_]/",
) ;
$replace = array (
'a',
'e',
'i',
'o',
'u',
'y',
'd',
'A',
'E',
'I',
'O',
'U',
'Y',
'D',
'-',
) ;
$title = preg_replace($translite_simbols, $replace, $title);
$$title = preg_replace('/(-)+/', '-', $title);