You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the target URL ends with /**, treat it as wildcard redirect and append the subpath properly.
routeRules: {'/single/': {redirect: {to: '/single-2/',statusCode: 301}},// Works '/wildcard/**': {redirect: {to: '/single/',statusCode: 301}},// Works'/wildcard/**': {redirect: {to: '/wildcard-2/**',statusCode: 301}},// Does not work but would be nice},
wildcard/a -> wildcard-2/a
Additional information
Would you be willing to help implement this feature?
The text was updated successfully, but these errors were encountered:
Describe the feature
If the target URL ends with
/**
, treat it as wildcard redirect and append the subpath properly.wildcard/a
->wildcard-2/a
Additional information
The text was updated successfully, but these errors were encountered: