我有一個腳本的問題。它不適用於需要工作的htaccess文件。這是htaccess包含的內容。我試圖將它安裝在本地主機上。該代碼是:500內部錯誤與RewriteEngine上.htaccess本地主機與wamp
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
#RewriteRule ^(.*)$ /index.php?q=$1 [L,QSA]
Options All -Indexes
如果我刪除此它的工作原理:
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule .* index.php/$0 [PT,L]
#RewriteRule ^(.*)$ /index.php?q=$1 [L,QSA]
但是這樣腳本加載,但每個頁面顯示錯誤404是否有解決這個問題的方法?
因此'選項所有-Indexes'導致500錯誤?你能檢查你的Apache error.log嗎? – anubhava