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.
1 parent 23b527f commit dc396f1Copy full SHA for dc396f1
apps/functions/dns-redirecting/index.ts
@@ -41,7 +41,7 @@ export const dnsRedirecting = functions
41
response.redirect(redirectType, 'https://angular.dev/cli');
42
}
43
if (hostname === 'blog.angular.io') {
44
- response.redirect(redirectType, 'https://blog.angular.dev');
+ response.redirect(redirectType, `https://blog.angular.dev${request.originalUrl}`);
45
46
47
// If no redirect is matched, we return a failure message
0 commit comments