next.js: next.js 14 redirect() inside a server action can't switch between root layouts (was working in next.js 13)
Link to the code that reproduces this issue
https://github.com/meszaros-lajos-gyorgy/nextjs-14-redirect-bug
To Reproduce
- start the development server with
npm run dev
- open http://localhost:3000/en in your browser
- Click on the “search” submit button on top of the page next to the text input (it doesn’t matter what you enter into the textfield, it always redirects to the same route -> http://localhost:3000/en/search/hello)
Current vs. Expected behavior
Expected result:
You should land on /en/search/hello
as that is the hardcoded redirection inside the server action in services/SiteSearch.service.ts
.
( This was the behavior in Next.js 13.4.12
, but it also threw an error (see https://github.com/vercel/next.js/issues/53392) )
Actual result:
The server action sends back a redirect instruction among the response headers:
X-Action-Redirect: /en/search/hello
but the page does not go to that path
Verify canary release
- I verified that the issue exists in the latest Next.js canary release
Provide environment information
Operating System:
Platform: linux
Arch: x64
Version: #37~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Oct 9 15:34:04 UTC 2
Binaries:
Node: 21.1.0
npm: 10.2.0
Yarn: 1.22.15
pnpm: 6.11.0
Relevant Packages:
next: 14.0.2
eslint-config-next: 14.0.2
react: 18.2.0
react-dom: 18.2.0
typescript: 5.2.2
Next.js Config:
output: N/A
Which area(s) are affected? (Select all that apply)
App Router
Additional context
When I try the same but first opening http://localhost:3000/en/search/world and then try to redirect via the server action then it works without any issues.
I’ve also wrote down all of the infos above to the readme in my repo.
About this issue
- Original URL
- State: open
- Created 8 months ago
- Reactions: 9
- Comments: 43 (1 by maintainers)
Off topic, but I have to admit that I regret choosing Next 13 for a new project. This whole next generation of next.js kinda feels like a work-in-progress/proof-of-concept project rather than something that is production ready.
I’ve spent way too many frustrating hours on this. For me, the work around is to just have a common root layout with minimum markup.
Project structure:
Example of /app/layout.tsx
Still not working in
14.0.3
This actually does work for me for all redirects apart from
redirect('/')
orredirect('')
.I have two root layouts in seperate groups. Where a server action from the login page does a redirect().
Having a root layout fixed my problem. My folder looks like this: app -> layout.tsx (I needed to add this root layout) app -> (auth) -> layout.tsx app -> (home) -> layout.tsx
@meszaros-lajos-gyorgy I have just amended your code slightly below and the redirect works as expected:
Add layout.tsx in src/app:-
Amend src/app/[locale]/layout.tsx to:
Amend src/app/search/layout.tsx:
Amend src/app/search/[search]/page.tsx to get the params:
let us know if it all works for you.
Actually, I did get this working as I wanted, bear with me, I am new to NextJs and what I am doing maybe not what is intended but for me, all of my errors have gone and the redirect works as expected along with the different layouts rendering how I want them.
In my scenario I wanted 2 layouts, the anon layout and the landing layout. The only difference between those two is that I also have a Navbar in the landing layout.
@guscsales is correct, you need the root layout and the other layouts become nested layouts (I think).
So what I did is have the layout.tsx in the root of the app, with this being the root layout, it holds all of the top level stuff. (fyi, I have ShadCn also installed) and the other layouts are in route groups (anon) and (landing)
The (anon)/layout.tsx looks like this:-
The (landing)/layout.tsx looks like this:-
In my (anon)/login/page.tsx I have my signin method redirect as below.
Apologies for the messy response, just wanted to let peeps know how I am doing this. Feel free to correct me, as I said, I am new to NextJs.
It maybe that the problem derives from the fact that you can/should only have one
<html><body>
so don’t put them in anything else except the root layout.tsx.wow, same issue. cant use with condition
Still broken in
v14.0.5-canary.43
Version
14.0.4-canary.39
still brokenThe issue is still present in
14.0.4-canary.18