Redirect requests to external service based on path

Hi ,
I am looking to redirect the requests coming to my k8s cluster to external service .
I have traefik as the ingress controller in my google cloud cluster . I want to redirect the requests based on path to external service which is in google app engine .
My Ingress Route:

apiVersion: traefik.containo.us/v1alpha1
kind: IngressRoute
metadata:
  name: test-svc-ingress
  namespace: development
spec:
  entryPoints:
    - websecure
  routes:
    - match: Host(`test.domain.io`) && PathPrefix(`/test/prefix`)
      kind: Rule
      services:
        - name: test-svc
          port: 443

Service :

apiVersion: v1
kind: Service
metadata:
  name: test-svc
  namespace: development
spec:
  type: ExternalName
  externalName: external.domain.com

Hello @nageshbhad,

When you say redirect the requests, do you mean that you want to return a client redirect? with a 30x response code?

Or are you wanting to proxy the request to a different domain? If so, using the externalName service should do what you want.