Hello everyone.
I have a site that uses https and user-defined urls, which is causing a problem with any url that requires a internal redirect on the site.
An example of this:
"/Default.aspx?ID=13&ProductID=00115110000000"
is translated to: "/products/sol.aspx", but it will only work if i use the translated link, otherwise it sends the user to the frontpage.
The obvious solution to this, is only to use the translated links everywhere on the site, but my products does not contain a translated link in the templatetags. So basicly, I'm trying to either get the translated links before rendering front-end, or a way solve the redirect problem entirely.
I'm aware that dw has a dictionary with translated urls somewhere in the system, i just don't know how to access it in a convenient way.
Thanks in advance.