Back to previous page with header( quot;Location: quot; ); in PHP(返回带有标题的上一页(“位置:);在 PHP 中)
本文介绍了返回带有标题的上一页(“位置:");在 PHP 中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
这个问题的标题解释了我的问题.如何使用 header( "Location: URL of previous page" );
The title of this question kind of explains my question. How do I redirect the PHP page visitor back to their previous page with the header( "Location: URL of previous page" );
推荐答案
尝试:
header('Location: ' . $_SERVER['HTTP_REFERER']);
请注意,这可能不适用于安全页面 (HTTPS),总体而言这是一个非常糟糕的主意,因为标头可能会被劫持,将用户发送到其他目的地.浏览器甚至可能不会发送标头.
Note that this may not work with secure pages (HTTPS) and it's a pretty bad idea overall as the header can be hijacked, sending the user to some other destination. The header may not even be sent by the browser.
理想情况下,您需要:
- 将返回地址作为查询变量附加到请求中(例如?back=/list)
- 在您的代码中定义返回页面(即所有成功提交的表单都重定向到列表页面)
- 为用户提供下一步要去哪里的选项(例如,保存并继续编辑或仅保存)
这篇关于返回带有标题的上一页(“位置:");在 PHP 中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:返回带有标题的上一页(“位置:");在 PHP 中
猜你喜欢
- 覆盖 Magento 社区模块控制器的问题 2022-01-01
- openssl_digest vs hash vs hash_hmac?盐与盐的区别HMAC? 2022-01-01
- Laravel 5:Model.php 中的 MassAssignmentException 2021-01-01
- 使用 GD 和 libjpeg 支持编译 PHP 2022-01-01
- 如何在 Symfony2 中正确使用 webSockets 2021-01-01
- 如何从数据库中获取数据以在 laravel 中查看页面? 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- 如何使用 Google API 在团队云端硬盘中创建文件夹? 2022-01-01
- PHP foreach() 与数组中的数组? 2022-01-01
- PHP - if 语句中的倒序 2021-01-01
