AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 CodeWhale
page.tsx
根目录
/
web
/
app
/
[locale]
/
terms
/
page.tsx
1
import { permanentRedirect } from "next/navigation";
2
3
export default async function TermsAliasPage({ params }: { params: Promise<{ locale: string }> }) {
4
const { locale } = await params;
5
permanentRedirect(`/${locale}/legal/terms`);
6
}
7
7 lines
Plain Text