如何从 URL 传递关键字但保持隐藏? (广告词)

发布于 2024-12-14 01:10:55 字数 190 浏览 0 评论 0原文

我本质上想知道将用户带到我的网站的关键字,但随后对用户隐藏它。所以...在我的广告中,我可以将 URL 设置为 domain.com?keyword=KW,然后将关键字存储在 PHP 变量中,以便我可以在给自己的电子邮件/短信中使用它。我真的不希望它显示在 URL 中,因为它看起来有点乱。

有什么方法可以真正实现这一目标吗?

谢谢!

I'd essentially like to know the keyword that takes a user to my site, but then hide it from the user. So...in my ads I could set up the URL as domain.com?keyword=KW, and then store the keyword in a PHP variable so that I can use it in emails/SMS messages to myself. I don't really want it shown in the URL though as it looks kind of messy.

Is there any way to actually achieve this?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无名指的心愿 2024-12-21 01:10:55

只需在用户访问您的网站后进行重定向即可:

if(isset($_GET['keyword'])){
   //do whatever function you need to do with the keyword data
   $keyword = $_GET['keyword'];
   //redirect
   header("Location: /");
}

显然该位置应该是您想要将用户发送到的位置。
“/”将把他放在他所在的页面/根目录。

Just do a redirect after the user gets to your site:

if(isset($_GET['keyword'])){
   //do whatever function you need to do with the keyword data
   $keyword = $_GET['keyword'];
   //redirect
   header("Location: /");
}

Obviously the location should be where you want to send the user.
The "/" will put him at the page/root of where he was.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文