arkadaşalr birisi yardım etsin lütfen:


scripti çalıştırmam için htaccess dosyası gerekli fakat htaccess i açtığım zaman script haricindeki dosylar gözükmüyor.(ör: Sitenize Günlük Gazete Ekleyin) işte htaccess dosyası:

php_flag register_globals on

Options All -Indexes
ErrorDocument 404 /arama.php?query=seksi
RewriteEngine On


RewriteRule ^$ index.php [L]
RewriteRule ^/index.php$ index.php [L]
RewriteRule ^/$ index.php [L]
RewriteRule ^index.html$ index.php [L]

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule video/([0-9]+)/(.*).html$ video.php?vid=$1 [L]
RewriteRule etiket/(.*)/$ arama.php?query=$1 [L]
RewriteRule ^etiket/(.*)/([0-9]+)\$ arama.php?query=$2&page=$1 [L]

RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule video_kategorileri/([0-9]+)/(.*).html$ kategori.php?kid=$1 [L]
RewriteRule video_kategorileri/([0-9]+)-([0-9]+)/(.*).html$ kategori.php?kid=$1&page=$2 [L]
RewriteRule ^(.*).html$ index.php?sayfa=$1 [L]