Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我创建了一个 php 应用程序。当我登录系统时,会打开下一页。现在,如果我从浏览器单击上一个按钮,它会返回登录页面,然后我再次单击浏览器中的下一个按钮,它会再次进入下一页。如何阻止通过浏览器进入的上一页和下一页?
用这个:
if(isset($_SESSION['sessionname'])){ header("Location: file2.php"); }
这将确保如果他记得会话(所以您的登录名),他将自动转到第二页。所以你不能去上一页。
将其放在登录后无法访问的页面上。(如注册和登录)