我已將應用程序上載到bluehost服務器上。我已將其上傳至public_html。CakePHP應用程序在bluehost服務器上出現500錯誤
htacces上根 /.htaccess許可644
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
/app/.htaccess許可644
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
/app/webroot/.htaccess許可644
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>
網址是http://consumersinchrist.org/。請幫忙。
如果你有一個500錯誤,你必須檢查你的Apache錯誤日誌,看看它是什麼。它可能與.htaccess有關,也可能是PHP錯誤。 –
這個問題似乎是脫離主題,因爲只有一個鏈接到一個網站(現在工作),沒有日誌信息。 – AD7six