Reputation:
In Kentico 10 I enabled "Use language prefix for URLs" in Settings -> URLs and SEO. All my urls are being redirected correctly except for the one that uses wildcard aliases.
/page -> /en-US/page
/cart -> /en-US/cart
/test/abc/123 -> /en-US/test
the /test url is defined with a page alias like follows
/test/{partid}/{desc}
It always strips off the wildcard parts.
Upvotes: 0
Views: 88
Reputation: 7696
Not exactly sure why it behaves like this (might be a bug). But if you switch the alias to "Route" and disable redirection then it stops redirecting.
You can then access the routing data through macros like this:
{%CurrentRouteData["partid"]#%}
and {%CurrentRouteData["desc"]#%}
.
Upvotes: 0