PHP重定向与HTTP查询字符串变量 [英] php redirect with HTTP query string variables

查看:75
本文介绍了PHP重定向与HTTP查询字符串变量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

atm我正在使用以下四行将用户重定向到我网站上的另一个页面:

atm I'm using the following four lines to redirect the user to another page on my website:

<?php
    header("Status: 301 Moved Permanently");
    header("Location: ./content/index.html");
    exit;
?>

,但是使用HTTP查询字符串变量(例如http://< url >?param=blah
)存在问题 它们不会被附加到URL上,这是可以理解的.

but there is a problem with the use of HTTP query string variables like http://< url >?param=blah
they don't get appended to url understandably.

是否有实现此目标的明智之举?

Is there a smart move for implementing this?

问候

推荐答案

<?php
    header("Status: 301 Moved Permanently");
    header("Location:./content/index.html?". $_SERVER['QUERY_STRING']);
    exit;
?>

这篇关于PHP重定向与HTTP查询字符串变量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

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