Merhaba arkadaşlar daha önce sorunsuz çalışan .htaccess dosyam internet 500 hatası vermeye başladı. .htaccess dosyasını silince sorun düzeliyor ama script kurulum yapar iken beyaz sayfada kalıyor. .htaccess dosyasında bir sorun olduğunu düşünüyorum. .htaccess den anlayan arkadaşlar bakabilirler mi nerede hata var diye scriptin kendi dosyası orijinli hali aşağıdaki gibi bunda hata alıyorum. Ayrıca ne hostingde nede localhosta çalışmıyor aynı hatayı veriyor

Konu yeri yanlış ise özür dilerim


Alıntı
Options +FollowSymLinks
RewriteEngine On
# leave just a normal / (slash) if the script is installed at root level otherwise enter it's folder here ex: /wscript (! no trailing slash)
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|install|scripts|fonts|uploads|robots \.txt|sitemap\.xml|favicon\.ico)

# if wscript is installed in a subfolder, add it before index.php ex: RewriteRule ^(.*)$ /wscript/index.php?/$1 [L] otherwise leave it as is
RewriteRule ^(.*)$ /index.php?/$1 [L]