标签: redirect
如果用户来自另一个网站,我需要重定向。
因此,如果用户来自反向链接至example.com/search.php?q=test 我想将用户重定向到首页
我尝试过:
$referer = env('HTTP_REFERER'); if(empty($referer)){ echo '<meta http-equiv="refresh" content="0; URL='https://example.com/'" />'; }