I’m porting an app to .NET 8. I would like to port this existing app one section at time. My hope is I can set something where if a request is made to a function that doesn’t exist the caller can be redirected to the old app.
So when a call is made to a controller that doesn’t exist for example:
NewAppUrl/data/historicData/
The caller would be redirected to:
OldAppUrl/data/historicData/
Ideally I would like to do this in the .NET 8 application vs setting an external reverse proxy.
1