I have a site complete with CMS etc all working under one domain name. It turns out for legal reasons one page on this site has to sit on a different domain name. The page is hooked into the same CMS as the rest of the site (built using codeigniter). I don’t want to have to do another installation just for this page.
Is there any simple way to display just this page under a different domain name without taking it out of the current application?
Thanks a lot
You should look at either (in order):
include()with correct php.ini configurationfile_get_content()and printing the variable into your page<iframe src="yoururl">wich would be the easy peasy but unsafe waycurllibraryfopen()wich theorically allows distant files to be opened, but based on my experience, it’s not that reliableLook at this site, it seems rather exhaustive regarding your problem.