This is because the browser back button does not s...
# box-products
e
This is because the browser back button does not send any new requests to your CFML server. It loads the cached page from the browser.
o
@elpete So this is considered normal behavior? Should I ignore it and if not how can I fix it?
e
It is considered normal. I’d try to use something besides redirectBack in this case. My overwhelming use case is after a form submission which is always a new request.
o
@elpete What would you recommend in this case, redirecting to the home page instead of the last page visited?
e
I think homepage is fine for this flow.
o
Ok thank you