Reputation: 481
I would like to embed myawesomeblog.com inside of a codeigniter application. Essentially, what I would like to see is when a user goes to my site (www.myexample.com) and clicks on blog they will be redirected to (www.myexample.com/blog) instead of myawesomeblog.com. I would like to keep the users location bar at www.myexample.com/blog.
Thanks.
Upvotes: 0
Views: 127
Reputation: 1014
So, you have your app and your blog on different domains?
You could try reverse proxy with Apache. No CI code is needed.
On your apache configuration:
ProxyPass /blog/ http://myawesomeblog.com/
ProxyPassReverse /blog/ http://myawesomeblog.com/
Upvotes: 1