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