Skip to content
New issue

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

Made links code so we don't get 404 on Rule "avoid-using-specific-cha… #6168

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rules/avoid-using-specific-characters-in-friendly-url/rule.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,14 @@ When adding a friendly URL, please avoid using specific characters like `+ : # &
Some characters are reserved characters, which may not be supported by some features, based on our experience, “+" is not supported in “canonical" to redirect from **http** to **https**.

::: greybox
http://ssw.com.au/rules/when-to-use-+1
`http://ssw.com.au/rules/when-to-use-+1`
:::
::: bad
Figure: Bad example - This URL will throw a 404 error rather than redirecting to https://
:::

::: greybox
http://ssw.com.au/rules/when-to-use-plus-1
`http://ssw.com.au/rules/when-to-use-plus-1`
:::
::: good
Figure: Good example - Redirect works fine if the URL doesn't include “+"
Expand Down
Loading