AsiRuh adlı üyeden alıntı: mesajı görüntüle
Root yetkiniz varsa ve ubuntu kullanıyorsanız eğer, error log dosyası şurada olabilir: /var/log/apache2
Orada yoksa php.ini dosyanızda logların nerede tutulacagına dair bilgi olması gerekiyor. Oradan bakabilirsiniz
Script sayfasında şunlar yazıyor;
Alıntı
Error 500
If you have trouble accessing the URL and error 500 appears
Put this line
RewriteBase /
after the:
RewriteEngine On
in your .htaccess file
Benim htaccess dosyam ise şöyle, acaba değişiklik yapmam mı lazım?
<IfModule mod_rewrite.c>
    <IfModule mod_negotiation.c>
        Options -MultiViews
    </IfModule>
    RewriteEngine On
    
    #Charset
    AddDefaultCharset utf-8
    
    #Protect - DOS
    LimitRequestBody 10000000
    
    #Index Protect
    Options All -Indexes
    
    <Files .htaccess>
    order allow,deny
    deny from all
    </Files>
    # Redirect Trailing Slashes...
    RewriteRule ^(.*)/$ /$1 [L,R=301]
    # Handle Front Controller...
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^ index.php [L]
    
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s(.*)/index\.php [NC]
    RewriteRule ^ %1 [R=301,L]
</IfModule>