dimitri adlı üyeden alıntı: mesajı görüntüle
Benden aynı sorunla karşı karşıyayım.
@Axaraylim .htacess dosyasının içeriğini verdiğiniz kodlar ile değiştirdim, ama 3. opsiyonu seçtiğimde yine "The page cannot be found" hatası çıkıyor.
aşağıdaki htacess içeriklerini sırayla deneyin
not: sunucunuzda mod rewrite modülü kurulu değilse bu htacesslerde işe yaramayacaktır hostcunuzla görüşün

Options +FollowSymlinks
RewriteEngine on
RewriteRule ^([a-z0-9_-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?.html)$ forumdisplay.php/$1 [QSA,L]
RewriteRule ^([a-z0-9_-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?.html)$ showthread.php/$1 [QSA,L]
RewriteCond %{REQUEST_URI} !(index.php|.css) [NC]
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php/$2 [QSA,L]







Options +FollowSymLinks +MultiViews
RewriteEngine On
Rewritebase /
RewriteRule ^([a-z0-9_-]*.(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?.html)$ forumdisplay.php?$1 [QSA,L]
RewriteRule ^([a-z0-9_-]*.(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?.html)$ showthread.php?$1 [QSA,L]
RewriteCond %{REQUEST_URI} !(index.php|.css) [NC]
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php?$2 [QSA,L]



Options +FollowSymlinks 
RewriteEngine on 
RewriteBase / 
RewriteRule ^([a-z]+).html$ /index.php?$1 [R,L]
RewriteRule ^([a-z0-9_-]*-(f|all)[0-9]+(p[0-9]+|/index[0-9]*)?.html)$ forumdisplay.php/$1 [QSA,L] 
RewriteRule ^([a-z0-9_-]*-(t|p)[0-9]+(p[0-9]+|/index[0-9]*)?.html)$ showthread.php/$1 [QSA,L] 
RewriteCond %{REQUEST_URI} !(index.php|.css) [NC] 
RewriteRule ^(archive|sitemap)/(.*)$ $1/index.php/$2 [QSA,L]