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

Update redirects.md #44

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
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
8 changes: 5 additions & 3 deletions help/cloud-guide/routes/redirects.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ http://{default}/:
to: http://www.{default}/
```

Import note: ece-tools may have trouble configuring URL routes in core_config_data tables if the `http://{default}/:` is not of type upstream.
dannystaple marked this conversation as resolved.
Show resolved Hide resolved

## Partial-route redirects

In the `.magento/routes.yaml` file, you can add partial redirect rules to existing routes based on pattern matching:
Expand Down Expand Up @@ -90,7 +92,7 @@ Use the following format to configure redirect requests for paths that begin wit
http://{default}/:
type: upstream
redirects:
paths:
paths:
"/from": { to: "https://{default}/to", prefix: true }
```

Expand All @@ -110,7 +112,7 @@ Use the following format to configure redirect requests which append the path su
http://{default}/:
type: upstream
redirects:
paths: "/from": { to: "https://{default}/to", append_suffix: false }
paths: "/from": { to: "https://{default}/to", append_suffix: false }
```

This configuration works as follows:
Expand All @@ -128,7 +130,7 @@ http://{default}/:
type: upstream
redirects:
expires: 1d
paths:
paths:
"/from": { to: "https://example.com/" }
"/here": { to: "https://example.com/there", expires: "2w" }
```
Expand Down
Loading