So I have a directory structure like this...
public_html
railsapp
www
images
stylesheets
Can my railsapp access the 'images' and 'stylesheets' folder in www, and if so, how? If I understand correctly, Rails looks in its public folder for these directories. So putting something like ../../../www/images in my .rhtml files won't work.
I definitely can't get my stylesheets to work that way. I tried adding
ActionController::Base.asset_host = "rodneyandtina.com" to my environment.rb, but I couldn't get Rails to look anywhere else except its own folders in public.
Thanks,
Tina