Next.js Discord

Discord Forum

Rewrite home content

Unanswered
Orinoco Crocodile posted this in #help-forum
Open in Discord
Orinoco CrocodileOP
Hello I have been unable to rewrite the content of the homepage with the content of another page using next.config.js rewrites, have tries both of this and none work:

{
source: "/:path*",
destination: "/landing/x",
has: [
{
type: "host",
value: "subdomain.example.com",
},
],
},
{
source: "/",
destination: "/landing/x",
has: [
{
type: "host",
value: "subdomain.example.com",
},
],
},

0 Replies