2
votes

I have uploaded my application on bluehost server. I have uploaded it on public_html.

htacces on root /.htaccess permission 644

<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule    ^$ app/webroot/    [L]
   RewriteRule    (.*) app/webroot/$1 [L]
</IfModule>

/app/.htaccess permission 644

<IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteRule    ^$    webroot/    [L]
    RewriteRule    (.*) webroot/$1    [L]
 </IfModule>

/app/webroot/.htaccess permission 644

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ index.php?url=$1 [QSA,L]
</IfModule>

url is http://consumersinchrist.org/. Please help.

2
If you have a 500 error, you must check your Apache error log to see what it was. It could be related to the .htaccess, or it could be a PHP error.Michael Berkowski
This question appears to be off-topic because there's only a link to a site (which now works) and no log information.AD7six

2 Answers

1
votes

Go to cpanel->PHPConfig and enable FastCGI , it will work like a charm :)

0
votes

Is this a new host for you? When I switch hosts, there's usually a unique small configuration that needs to be done to get my custom apps to work.

Check out these links from BlueHost:

Help 1 Help 2