app1.com - an HTML simple website
app2.com - a second simple html website
app3.com - a Rails fcgi
Setting up the first 2 was simple and they were both running fine. then I set up the rails app and that's when things went screwy.
app1.com is still working fine.
app2.com - which used to work is now saying "Rails failed to start"?? It's not a rails app and WAS working before I tried to set up app3.com
app3.com is giving me Forbidden 403 errors, even though I went through and followed the permission setting instructions. I'm pretty sure the problem is in the .htaccess files but I'm not really sure how to set them up since most of tutorials assume that your first app is a Rails app.
UPDATE**********************
Since posting this, I found another post with a similar problem to my app2.com domain and was able to fix it by placing an .htaccess file in the root with the lines...
RewriteEngine on
RewriteRule / /index.html
So now app1.com and app2.com are working fine, but I still can't get the rails app going