CakePHP应用程序的bluehost服务器上出现500错误

时间:2013-07-30 15:05:52

标签: .htaccess cakephp bluehost

我已将我的应用程序上传到bluehost服务器上。我已将其上传到public_html。

根目录上的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/。请帮忙。

2 个答案:

答案 0 :(得分:1)

转到cpanel-&gt; PHPConfig并启用FastCGI,它将像魅力一样工作:)

答案 1 :(得分:0)

这是你的新主持人吗?当我切换主机时,通常需要使用一个独特的小配置来使我的自定义应用程序正常工作。

查看BlueHost的这些链接:

Help 1 Help 2