I have a Flask project and would like to integrate some third-party service into it, for example a Wordpress blog (what is written in PHP and can't be integrated into a Flask project). That service can have a subdomain on theirs or on our hosting. But the idea is to organize this service as a subfolder of my project.
I know in ASP.Net it's easy to create a virtual directory and assign the whole project that can be hosted anywhere. But I don't know if it's possible to do it with Flask and how to do that.
To summarize:
www.myproject.com/blog should actually point to blog.myproject.com or myproject.wordpress.com
It's not just a route in the same project!
The third party service is hosted completely separately and has nothing to do with my service, it's even may be written in some other language or framework.
PLEASE do not mark this question as duplicate of Add a prefix to all Flask routes, it has nothing to do with it.