Backend Login erst nach Browser-Cache leeren möglich

Hi, ich komme nicht weiter. Ich muss immer zuerst den Browser-Cache leeren, bevor ich mich ins Backend einloggen kann. Sonst wird die Anmeldemaske einfach wieder geladen. Keine Fehlermeldung. Nichts. Kennt das jemand? Vielen Dank!

Every time you press the back (or forward) button in a browser, the URL changes, which most of the time means a new request is fired off (from the browser, to the server). You can have a logic that is as follows:

Page 1: Clears all cache, presents user with log-in form.
Page 2: Presents user with logged-in data

If on page 2, the user presses the back button, they will be sent back to page 1, which will clear all cache and present the user with a log-in form.

But this also means that the user cannot do anything in page 2 (like go to page 3), because otherwise, any calls to „back“ won’t actually go back to page 1.

You can do this. But it’s a pretty terrible workflow. My advice is, don’t do it, and rather have a „log off“ button, that takes the user to page 1 (which will clear cache).