There was an error while loading. Please reload this page.
1 parent 080a90c commit ce62209Copy full SHA for ce62209
1 file changed
apps/landing-page/app/pages/pricing/index.astro
@@ -39,6 +39,10 @@ import { localeFromPath, localizedHref } from '../../i18n';
39
import { DEEPSEEK_V4_PRO_CAMPAIGN } from '../../_lib/deepseek-v4-pro-campaign';
40
import { getPricingCampaignContent } from '../../_lib/pricing-campaign-content';
41
42
+if (Astro.url.pathname === '/pricing' || Astro.url.pathname === '/pricing/') {
43
+ return Astro.redirect('/pricing-e-final/?review=pricing', 302);
44
+}
45
+
46
const locale = localeFromPath(Astro.url.pathname);
47
const isZh = locale === 'zh' || locale === 'zh-tw';
48
const href = (path: string) => localizedHref(path, locale);
0 commit comments