Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
188 views
in Technique[技术] by (71.8m points)

php - Not Pressing the URL

Here is Code I used to Redirect

<?php
// 301 Moved Permanently

$id1 = $_SERVER['QUERY_STRING'];
$id2 = $_SERVER['QUERY_STRING'];
header("Location: https://example1.com/away.php?to=https://example2.com/sample-page/?$id1", true, 301);

exit();
?>

When I Pressing The URL

https://example2.com/sample-page/?id1=4567&id2=name

Get The Result

https://example2.com/sample-page/?id1=4567

Not Pressing the URL With Id2=name

Can any one help me to fix this Problem

Want a Result this

https://example2.com/sample-page/?id1=4567&id2=name

question from:https://stackoverflow.com/questions/65541560/not-pressing-the-url

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

It simple you didn't use both id to your URL just edit it like this:

header("Location: https://example1.com/away.php?to=https://example2.com/sample-page/?id1={$id1}&id2={$id2}", true, 301);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

2.1m questions

2.1m answers

60 comments

56.9k users

...