Ingress URL redirection for particular URL and other URL also

Asking for help

Cluster information:

Kubernetes version: 1.24.10
Cloud being used: Azure
Installation method:
Host OS: Ubuntu
CNI and version: Azure CNI
CRI and version:

I have deployed Superset app in kuberentes, using Helm file.
everything working fine, but when I open New Dashboard, it is showing blank page, because dashboard URL is not redirected.
So I need to redirect only one URL and remaining URL will be as it is,
I have attached Superset Ingress here, please help me, how to add one URL redirection and remaining URL work as it is.

Required URL redirection: If URL is “/test/new” than it should be redirected to “/test/new/”

IGRESS:
ingress:
enabled: true
ingressClassName: ~
annotations:
#nginx.ingress.kubernetes.io/configuration-snippet: |-
# rewrite /test/new /test/new/;
path: /
pathType: ImplementationSpecific
hosts:
- chart-example.local
tls:
extraHostsRaw:

Thanks in Advance