@@ -18,7 +18,7 @@ function getLocale(request: NextRequest): string | undefined {
18
18
}
19
19
20
20
export function middleware ( request : NextRequest ) {
21
- console.log("request.url ", request.url);
21
+ // console.log("request.url ", request.url);
22
22
const pathname = new URL ( request . url ) . pathname ? new URL ( request . url ) . pathname : `/${ new URL ( request . url ) . pathname } ` ;
23
23
// check if the pathname is a resource file
24
24
const isResourceFile = pathname . match ( / \. [ 0 - 9 a - z ] + $ / i)
@@ -27,22 +27,36 @@ export function middleware(request: NextRequest) {
27
27
locale => ! pathname . startsWith ( `/${ locale } ` ) && pathname !== `/${ locale } `
28
28
)
29
29
30
- console.log("pathnameIsMissingLocale ", pathnameIsMissingLocale);
31
- console.log("pathname ", pathname);
30
+ // console.log("request.url ", request);
31
+
32
+ // console.log("pathnameIsMissingLocale ", pathnameIsMissingLocale);
33
+ // console.log("pathname ", pathname);
32
34
33
35
// Redirect if there is no locale
34
36
if ( pathnameIsMissingLocale ) {
35
- const locale = getLocale(request)
36
- return NextResponse.redirect(
37
- new URL(
38
- `/${locale}${pathname.startsWith('/') ? '' : '/'}${pathname}`,
39
- request.url
37
+ const locale = getLocale ( request ) ;
38
+ if ( locale === 'fr' ) {
39
+ console . log ( "redirecting " + pathname + " to " + `/${ locale } ${ pathname . startsWith ( '/' ) ? '' : '/' } ${ pathname } ` ) ;
40
+ return NextResponse . redirect (
41
+ new URL (
42
+ `/${ locale } ${ pathname . startsWith ( '/' ) ? '' : '/' } ${ pathname } ` ,
43
+ request . url
44
+ )
45
+ )
46
+ } else {
47
+ //console.log("rewriting " + pathname + " to " + `/en${pathname.startsWith('/') ? '' : '/'}${pathname}`);
48
+ return NextResponse . redirect (
49
+ new URL (
50
+ `/fr${ pathname . startsWith ( '/' ) ? '' : '/' } ${ pathname } ` ,
51
+ request . url
52
+ )
40
53
)
41
- )
54
+ }
42
55
}
43
56
}
44
57
45
58
export const config = {
46
- // Matcher ignoring `/_next/` and `/api/`
47
- matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)']
59
+ matcher : [
60
+ '/:path*'
61
+ ]
48
62
}
0 commit comments