mrb arkadaşlar. benim ufak bi sorunum var. sitemdeki son forum konularını /kategori/konuadı.html olarak göstermek istiyorum. bunun için eklentimi yazdım siteye yükledim.. gerekli modifiyeyi yaptım ama .htaccesi ayarlayamadım. size eklentimin kodlarını ve htaaceesi kodunu vereyim..
eklenti
$ara = array (  
                
                 "'<a href=\"forums.php\?m=posts\&amp;q=([0-9]*)\&amp;kat=([0-9a-z-]*)&baslik=([0-9a-z-]*)\"'i", 
                
                
                
                );

$degistir = array (  
                  "<a href=\"konu\\1-\\2.html\"",
          
                 
                 
                 );

$output = preg_replace ($ara, $degistir, $output);

?>
htaccces
RewriteRule ^konu([0-9]+)-(.*)$ forums.php?m=posts&q=$1&baslik=$2 [L] [NC]
buda son forum konularında yaptğım modifiye:
$latestposts .= "<a href=\"forums.php?m=posts&amp;q=".$row['ft_id']."&amp;kat=".sed_filtetr(str_replacei($row['fs_title']))."&baslik=".sed_filtetr(str_replacei($row['ft_title']))."\">".sed_cc(sed_cutstring(stripslashes($row['ft_title']),$cfg['plugin']['latestposts']['baslik']))."</a></td>";