We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f4a5193 + 6b32639 commit 37dd8c9Copy full SHA for 37dd8c9
src-ts/lib/route-provider/rewrite.tsx
@@ -19,6 +19,6 @@ export const Rewrite: FC<RewriteProps> = props => {
19
)
20
21
return (
22
- <Navigate to={rewriteTo} />
+ <Navigate to={`${rewriteTo}${window.location.search}`} />
23
24
}
src-ts/tools/learn/learn.routes.tsx
@@ -152,6 +152,12 @@ export function getAuthenticateAndEnrollRoute(): string {
152
153
154
const oldUrlRedirectRoute: ReadonlyArray<PlatformRoute> = EnvironmentConfig.SUBDOMAIN === AppSubdomain.tca ? [
155
+ {
156
+ children: [],
157
+ element: <Rewrite to='/certificate/:certUuid' />,
158
+ id: 'redirect-old-uuidcert-url',
159
+ route: '/learn/:certUuid',
160
+ },
161
{
162
children: [],
163
element: <Rewrite to='/*' />,
0 commit comments