Skip to content

Commit

Permalink
fix: restore critical redirect rules for backward compatibility
Browse files Browse the repository at this point in the history
- Restored /send-notifications/designing-workflows/reference-:match redirect
- Restored /send-notifications/designing-workflows/:any redirect
- Restored /designing-workflows/references redirect
- Marked redirects as permanent for SEO value

These redirects are still actively used across documentation and external links.

Co-Authored-By: [email protected] <[email protected]>
  • Loading branch information
1 parent 2c54a97 commit 8319799
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,21 @@ const nextConfig = {
destination: "/designing-workflows",
permanent: false,
},
{
source: "/send-notifications/designing-workflows/reference-:match",
destination: "/designing-workflows/references/reference-:match",
permanent: true,
},
{
source: "/send-notifications/designing-workflows/:any",
destination: "/designing-workflows/:any",
permanent: true,
},
{
source: "/designing-workflows/references",
destination: "/designing-workflows/template-editor/reference-liquid-helpers",
permanent: true,
},
{
source: "/designing-workflows/references/reference-liquid-helpers",
destination:
Expand Down

0 comments on commit 8319799

Please sign in to comment.