• 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 fix url vbb khi convert qua xenforo

Admin

Well-Known Member
Staff member
Administrator
Chắc khi convert qua xenforo , không ít 1 số bạn sẽ bực vì mất Seo URL ở google cũng như các link cũ không xem được. Hôm nay mình sẽ hướng dẫn một cách rất đơn giản mà người ta gọi là "Quick and Dirty".

Mẹo của chúng ta : Dùng chức năng redirect 303 của PHP
tạo file showthread.php upload lên ngang hàng index.php
<?
// Topic 303 Redirect
if($_GET['t']){
$idtopic = $_GET['t'];
$page = $_GET['page'];
if($page) $page="page-$page";
else $page='';
header("HTTP/1.1 303 See Other");
header("Location: index.php?threads/$idtopic/$page");
}else{
header("HTTP/1.1 303 See Other");
header("Location: index.php");
}
?>
Xong thì save file đó với nội dung trên. Thử hàng và thấy kết quả nha.

Nếu người khác vào linK showthread.php?t=*** thì nó sẽ làm việc
Nếu chỉ vào showthread.php nó sẽ redirect về forum
Ta có thể áp dụng để làm các phần khác như member, và forum.
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top