Thank you ! This should be the application internal implement and make me relax much more.But i have another question,how do i generate urls for diffrent domains and make them to be mapped to the same controller and action? Use the route setting and do something with the server?I ever used the route ,but not for this problem.Can i manage it like this?
On Nov 10, 6:53 pm, DHH <[EMAIL PROTECTED]> wrote: > > My question is:different registered users have different domains,but > > these different domains use the same controller and actions to access > > their common and customized contents.How do i manage this? use the > > rails route to deploy? but how to deploy? In addition,do i have to do > > somthing with the server setting?Thank you for your help. > > Use the domain to lookup the account model and base everything off > that. For example: > > class ApplicationController < ActionController::Base > before_filter :set_application > > private > def set_application > @application = Application.find_by_domain(request.domain) > end > end > > class ArticlesController < ApplicationController > def index > @articles = @application.articles > end > > def show > @article = @application.articles.find(params[:id]) > end > end --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

