Hi all I''ve been using the howto on using subdomains as account keys to make it easy for my users to access their accounts. I was wondering if it might also be possible to assign different public directories based on the subdomain. so for example, when a user enters user1.example.com/index.html rails would look in some_dir/user1/public for index.html and when it''s user2 it would look in some_dir/user2/public etc... I could set up a route to controller ''fetch'' this controller would work out the users public directory based on the subdomain and then return the requested file from that directory using send_file does this seem like the right way to go? does anyone have a better suggestion? Alan