Routing
page/sub-category
Matched route
Route Parameters
| Name | Value |
|---|---|
| ct1 | "work" |
| ct2 | "rainwear" |
| ct3 | "pants" |
Route Matching Logs
Path to match:
/work/rainwear/pants/
| # | Route name | Path | Log |
|---|---|---|---|
| 1 | ct1_work__ct2_rainwear | /work/rainwear/ | Path does not match |
| 2 | ct2_rainwear | /rainwear/ | Path does not match |
| 3 | ct1_work__ct2_rainwear__ct3_ | /work/rainwear/{ct3}/ | Route matches! |
Note: These matching logs are based on the current router configuration, which might differ from the configuration used when profiling this request.