如何从 URL 传递关键字但保持隐藏? (广告词)
我本质上想知道将用户带到我的网站的关键字,但随后对用户隐藏它。所以...在我的广告中,我可以将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需在用户访问您的网站后进行重定向即可:
显然该位置应该是您想要将用户发送到的位置。
“/”将把他放在他所在的页面/根目录。
Just do a redirect after the user gets to your site:
Obviously the location should be where you want to send the user.
The "/" will put him at the page/root of where he was.