We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now it's possible to have a redirection path like A => B => C => D. Why is that?
A => B => C => D
Given this redirection path, if I add a new redirect that redirects D => E, then it would make more sense to update the redirects, such that:
D => E
A => E
B => E
C => E
This way we know that when we have a redirect it always contains it's final destination in the destination field.
destination
UPDATED Comment from @Roshyo: This would only be correct if all the redirects are permanent redirects.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now it's possible to have a redirection path like
A => B => C => D
. Why is that?Given this redirection path, if I add a new redirect that redirects
D => E
, then it would make more sense to update the redirects, such that:A => E
B => E
C => E
D => E
This way we know that when we have a redirect it always contains it's final destination in the
destination
field.UPDATED
Comment from @Roshyo: This would only be correct if all the redirects are permanent redirects.
The text was updated successfully, but these errors were encountered: