隨着當前htaccess的,我的網站不能正常工作,我得到「內部服務器錯誤」:htaccess的評論不工作
:RewriteEngine on
# Disable Directory Browsing
# Options All -Indexes
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?/$1 [L]
這是通過從語法刪除這些行解決
# Disable Directory Browsing
# Options All -Indexes
正如您所看到的,它們已經被評論,所以刪除它們應該沒有什麼區別,那爲什麼它很重要?
您是否嘗試過查看有關500錯誤的服務器日誌? – hjpotter92
沒有。在哪裏看? – Tarek
一般在'/ var/log/apache2/error.log' – hjpotter92