طريقة تغيير روابط المواضيع
افتح ملف : includes/functions.class.php
وابحث عن هذين السطرين
CODE
$type = str_replace("index.php?page=topic&show=1&id=","t",$type);
$type = str_replace("index.php?page=topic&show=1&id=","t",$type);
واستبدل حرف t الموجود بداخل علامات التنصيص بـ topic
ثم حرر ملف htaccess. الموجود في رئيسية المنتدى
واضف في اسفله
CODE
RewriteRule ^topic([0-9]+).html index.php?page=topic&show=1&id=$1 [L]
RewriteRule ^topic([0-9]+)&password=(.*)&count=([0-9]+) index.php?page=topic&show=1&id=$1&password=$2&count=$3 [L]
RewriteRule ^topic([0-9]+)&count=([0-9]+) index.php?page=topic&show=1&id=$1&count=$2 [L]
RewriteRule ^topic([0-9]+)&last_post=1&count=([0-9]+) index.php?page=topic&show=1&id=$1&last_post=1&count=$2 [L]
RewriteRule ^topic([0-9]+) index.php?page=topic&show=1&id=$1 [L]