我有安裝一個PHP腳本優惠券的問題錯誤文件.htacess 500內部服務器錯誤
如果負載.htaccess文件
錯誤頁面
內部服務器錯誤
的服務器遇到內部錯誤或配置錯誤,並且 無法完成您的請求。
請通過[email protected] 與服務器管理員聯繫,通知他們發生此錯誤的時間以及您在此錯誤發生之前執行的操作 。
有關此錯誤的更多信息可能在服務器錯誤 日誌中可用。
此外,遇到500內部服務器錯誤錯誤,而 試圖使用ErrorDocument來處理請求。
這是我的.htaccess文件
選項-Multiviews
# Tell PHP that the mod_rewrite module is ENABLED.
SetEnv HTTP_MOD_REWRITE On
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} (.+)/$
RewriteRule^%1 [R=301,L]
RewriteRule ^(admin) - [L]
RewriteRule ^(cache) - [L]
RewriteRule ^(installer) - [L]
RewriteRule ^(templates) - [L]
RewriteRule ^(ajax) - [L]
RewriteRule ^(plugins) - [L]
RewriteRule ^(thumbs) - [L]
RewriteRule ^go\.php - [L,QSA]
RewriteRule ^confirm_subscription\.php - [L,QSA]
RewriteRule ^rss\.php - [L,QSA]
RewriteRule ^sitemaps - [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*) index.php [L]
可能是什麼問題了嗎?
如果您刪除行,直到它開始工作,哪條線特別是導致錯誤? – rickdenhaan
片刻我嘗試清除行 – Danny
SetEnv HTTP_MOD_REWRITE On – Danny