25 Feb 2025

When redirecting from another site, 500 internal server error in NEXT.js

If you are facing 500, 404 or another error on nextjs while redirecting from another site but it works properly with same site or just by refreshing then follow below steps (I am not sure about the issue but below implementation solve my problem & I think it's not standard way)

When I open my url example.com/p/abcxyz directly then it works but when I open it from like mail then it redirects to example.com/p/abcxyz with showing 404

I tried many solutions but didn't worked

so what I did is instead of setting example.com/p/abcxyz I used to redirect on example.com/p/abcxyz?retry=1 and in page.js checking if retry=1 then redirect to RetryClientComponent and it will reload again

// page.js or page.tsx
   function ({ params, searchParams }) {

  const=;

  if (retry === "1") {
    //
     <RetryClientComponent />;
  }

   (
    <>
      //
    </>
  );
}
"use client";
 React, { useEffect }  "react";

  function () {
  (() => {
    const=new();
    const=("retry");

    if (currentRetry === "1") {
      //
      ("retry", "2");
      (());
    }
  }, []);

   (
    <div ={{ textAlign: "center", marginTop: "20%" }}>
      <p>Retrying, please wait...</p>
    </div>
  );
}

Note: It's not standard way but it works

You may also like

Next.js App Router: Cookies Working Locally but Failing in Production

Struggling with cookie management in production on Next.js? Discover...

Continue reading

Unable to Play Audio in Production but in Local It's Working

Unable to Play Audio in Production but in Local It's Working

Continue reading

SSR with Infinite Scroll in NEXT.js

SSR with Infinite Scroll in NEXT.js

Continue reading