I have a legacy WordPress blog that runs only in PHP 5.2 (lot's of incompatibilities in later versions), and I am developing a new Wordpress blog that should run in PHP 7.
The requirement is that the new blog have an URL of foo.example
, and the legacy would be in foo.example/bar
.
Due to different PHP versions, each one is hosted in a different machine. Until now, the closest I got was having a subdomain bar.foo.example
pointing to the legacy blog, but couldn't make foo.example/bar
do the same thing (don't even know if it's possible).
I would gladly apreciate some help with this task and I'm open to new alternatives.