How to redirect from xano to weweb url with params?

onboarding URL with the user ID in the parameters.

On page load, the onboarding page is supposed to fetch the ID and start the workflow.

When testing this in the editor, it works as long as I define the redirection path in Xano with the parameter “?user=”, like this:

https://editorwewebio/c655b5f1-c503-4898-902b-c4d4d1ba119/?user=578892b-ad4a-486c-943f-2075aa6447ca

However, this does not work in production with my custom domain—I get a “404 Not Found” error.

On the other hand, if I change the Xano redirection to the following syntax without “?user=”:

https://editorwewebio/c655b5f1-c503-4898-902b-c4d4d1ba119/578892b-ad4a-486c-943f-2075aa6447ca

In production, the URL is recognized, but the parameter is not, so the workflow crashes.

Could you please tell me the correct syntax for redirecting a user from Xano so it works both in production and in the editor?

Hi @Cuen.talt

As we’ve discussed earlier, in the editor, a dynamic page url is not page_id/param.

It’s page_id?wwParam-yourParamKey=yourParamValue

Hi, as we discussed earlier, that didn’t solve the issue, and I already tried it.