I have a Rails site and an externally hosted WordPress blog. I want to be able to send users to mysite.com/blog and have them hit the blog. I can do that pretty easily with a redirect. But then they are no longer on my main site.
What I really want is to render the blog inside my main template, so that the navbar from my site remains on the page, and the url stays as mysite.com/blog. Ideally, when they clicked on a link in the blog, it would render inside the template, but the navbar and url from the rails site would remain intact.
Is this possible?