I am using Apache to host and servePython application service.
It is listening on port 80 for any URL. (r^)
I need to create a proxy router,
That the rule will be that any route that is (r^/proxy/*.) will redirect to otherhostname:8080
how can I force that rule with the existing running application?
How should I do that?
Thank you !