Merhaba, bir ücretsiz firma rehberi scripti buldum. Adres BU bunu kurduğumda resimler falan aktif, şu an göründüğü gibi problem yok. ama hiç bir link çalışmıyor. .htaccess i silersem eğer, resimler falan gidiyor site yamuluyor, ama linkler çalışıyor. yönetim paneline girebiliyorum. .htaccess de bozuk olan kısım neresidir sizce? şuanki hali bu; nasıl yapmalıyım?

<IfModule mod_rewrite.c>
    RewriteEngine On
 
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule css/(.*)/(.*).css      assets/minify/index.php?theme=$1&css=$2 [QSA,L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule css/(.*).css          assets/minify/index.php?theme=$1&css= [QSA,L]
 
    RewriteRule js/(.*)/(.*).js$      assets/minify/index.php?theme=$1&js=$2 [QSA,L]
    RewriteRule js/(.*).js$            assets/minify/index.php?theme=$1&js= [QSA,L]
 
 
    RewriteRule ^(.*)\.htm$                      category/index/$1        [QSA,L,NC]
 
    RewriteCond %{HTTP_HOST} !^(www) [NC]
    RewriteRule ^(.*)$ http://www.bul.emrearici.com.tr/$1 [L,R=301]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
<IfModule !mod_rewrite.c>
    # Without mod_rewrite, route 404's to the front controller
    ErrorDocument 404 /index.php
</IfModule>