返回带有标题的前一页("Location:");在PHP中 [英] Back to previous page with header( "Location: " ); in PHP

查看:136
本文介绍了返回带有标题的前一页("Location:");在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.

理想情况下,您可能会选择其中一个:

Ideally, you will want to either:

  • 将返回地址作为查询变量(例如?back =/list)追加到请求中
  • 在代码中定义返回页面(即,所有成功提交的表单都重定向到列表页面)
  • 为用户提供他们下一步要去的位置的选项(例如,保存并继续编辑或仅保存)

这篇关于返回带有标题的前一页("Location:");在PHP中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆