gpt4 book ai didi

PHP URL 重定向 - 我这样做对吗?

转载 作者:行者123 更新时间:2023-12-03 23:05:23 25 4
gpt4 key购买 nike

我希望我的网站上有一个链接可以像这样重定向...

http://mysite.com?url=1

$offer = $_GET['url'];

if ($offer == '1'){
header("Location: http://site1.com");
}
if ($offer == '2'){
header("Location: http://site2.com");
}

这是函数式的,但是有没有比 50 个 if 语句更好的方法呢?

最佳答案

假设您的网站实际上不是 site1.comsite2.com(如果是的话,我会印象深刻),这可能是一个好方法解决问题的方法:

$sites = array(
'1' => 'http://www.google.com/',
'2' => 'http://www.bing.com/'
);

if (isset($sites[$_GET['url']])) {
header('Location: ' . $sites[$_GET['url']]);
die();
} else {
die('Sorry, this does not exist.');
}

这当然还允许您执行一些操作,例如在 ?url= 中接受非数字值。

关于PHP URL 重定向 - 我这样做对吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13993372/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com