On Fri, Apr 2, 2010 at 7:59 AM, Yiannis <[email protected]> wrote: > Hello > > I have a rails site in a domain like http://domain.com/ which is in > one folder the whole application and a blog (wordpress - php > application in another folder) under http://blog.domain.com/. > > How can I do http://domain.com/blog/ shows up the php application?
You could have rails redirect from domain.com/blog to blog.domain.com But it might be better to do this at the http server layer. For example if you are using apache as the front end, you could use mod_rewrite to route blog urls the the blog before the rails app ever sees them. -- Rick DeNatale Blog: http://talklikeaduck.denhaven2.com/ Github: http://github.com/rubyredrick Twitter: @RickDeNatale WWR: http://www.workingwithrails.com/person/9021-rick-denatale LinkedIn: http://www.linkedin.com/in/rickdenatale -- 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.

