I know users.create_logout('example') can direct to users to the path under the current path. like /main/example/, but what if i want to direct the users to the subpath of the example, say /main/example/example1, how do I do that? Thank you a lot
I know users.create_logout(‘example’) can direct to users to the path under the current path.
Share
The docs say:
…so you can put any full or relative path in as the argument, like:
The URL is just a string, so you can do something like this (after your additional comment below):