30 Nov 2021
Link to this post
I'd like to create a page where the user lands on the page, the status of the record is evaluated, and if the status is say "Draft", the user is redirected to a R/W form, but if the status is anything else, the user is redirected to a R/O form.
The redirection must be done SERVER side... Javascript would be a security hole, which is why simply providing a R/W form for Draft, and a R/O form for everything else wouldn't work... just going to the URL for the R/W form with the GUID (the user could get the encryped GUID from the R/O form URL) would cause a security issue.
Am I overthinking this, or is there a best practice way to do this?