أهلا وسهلا بك زائرنا الكريم في منتدى دعم PBBoard الرسمي، لكي تتمكن من المشاركة ومشاهدة جميع أقسام المنتدى وكافة الميزات ، يجب عليك إنشاء حساب جديد بالتسجيل بالضغط هنا أو تسجيل الدخول اضغط هنا إذا كنت عضواً .

أريد تعديل روابط المنتديات والمواضيع وكذالك الأعضاء


مشاهدة المشاركة في الموضوع بالعرض العادي
look/images/icons/i1.gif أريد تعديل روابط المنتديات والمواضيع وكذالك الأعضاء
  22-11-2015 12:01 صباحاً  
Soliman
معلومات الكاتب
افتح ملف : includes/functions.class.php



وابحث عن :



CODE
         $type = str_replace("f","f",$type);
               $type = str_replace("index.php?page=forum&show=1&id=","f",$type);

               $type = str_replace("t","t",$type);
               $type = str_replace("index.php?page=topic&show=1&id=","t",$type);

               $type = str_replace("u","u",$type);
               $type = str_replace("index.php?page=profile&show=1&id=","u",$type);






واستبدله بـ :

CODE
             $type = str_replace("f","forum/",$type);
               $type = str_replace("index.php?page=forum&show=1&id=","forum/",$type);

               $type = str_replace("t","topic/",$type);
               $type = str_replace("index.php?page=topic&show=1&id=","topic/",$type);

               $type = str_replace("u","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&amp;show=1&amp;id=$1 [L]<br />
RewriteRule ^topic/([0-9]+)&amp;password=(.*)&amp;count=([0-9]+) index.php?page=topic&amp;show=1&amp;id=$1&amp;password=$2&amp;count=$3 [L]<br />
RewriteRule ^topic/([0-9]+)&amp;count=([0-9]+) index.php?page=topic&amp;show=1&amp;id=$1&amp;count=$2 [L]<br />
RewriteRule ^topic/([0-9]+)&amp;last_post=1&amp;count=([0-9]+) index.php?page=topic&amp;show=1&amp;id=$1&amp;last_post=1&amp;count=$2 [L]<br />
RewriteRule ^topic/([0-9]+) index.php?page=topic&amp;show=1&amp;id=$1 [L]<br />
<br />
RewriteRule ^forum/([0-9]+).html index.php?page=forum&amp;show=1&amp;id=$1 [L]<br />
RewriteRule ^forum/([0-9]+)&amp;password=(.*)&amp;count=([0-9]+) index.php?page=forum&amp;show=1&amp;id=$1&amp;password=$2&amp;count=$3 [L]<br />
RewriteRule ^forum/([0-9]+)&amp;count=([0-9]+) index.php?page=forum&amp;show=1&amp;id=$1&amp;count=$2 [L]<br />
RewriteRule ^forum/([0-9]+) index.php?page=forum&amp;show=1&amp;id=$1 [L]<br />
<br />
RewriteRule ^user/([0-9]+)&amp;count=([0-9]+) index.php?page=profile&amp;show=1&amp;id=$1&amp;count=$2 [L]<br />
RewriteRule ^user/([0-9]+).html index.php?page=profile&amp;show=1&amp;id=$1 [L]<br />
RewriteRule ^user/([0-9]+) index.php?page=profile&amp;show=1&amp;id=$1 [L]<br />
<br />


الساعة الآن 03:27 AM