I have an umbraco v 4.7.2 and should perform an user activation. When a new user registers on the site, it recieves an e-mail with the activation link.
Say, the link is
http://www.example.com/activate?user=john&?activationCode=s0m3Act1vat1on_c0d3
in the umbraco BackOffice there is a page, located at some arbitrary position, say
siteRoot\aFolder\UserActivation
I have multiple sites in umbraco (say "Example1 EN", "Example1 FR", "Example2 EN").
Each site has its own activation page(that process the activation). To obtain the address to that page in code, I made a ContextPicker parameter (named ActivationPage
) on the site's Home page.
How should I redirect the fixed path mysite.com/activate?+params
to that ActivationPage
in order to process the activation?
If I use URLRewrite, how can that module access to the individual site's settings?
PS. When I say simulate a redirect to an action, I relly mean it, because we have no really conrollers/actions mechanism (I am not sure even if umbraco 4 can support it)