在 PHP 中确定引用域的最佳方法?
我有一些代码想在 PHP 网站上仅向来自 Twitter.com 的访问者显示。最好的方法是什么?
I've got some code I want to show on a PHP site only to visitors from Twitter.com. What's the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
除了其他答案之外,如果您要根据引荐来源网址输出不同的内容,您还应该
这样做,以便浏览器和代理知道内容可能会根据引荐来源网址而有所不同。
In addition to the other answers, if you're going to be outputting different content depending on the referrer, you should also do
so that browser and proxies will know that the content may vary depending on the referrer.
你可以使用这样的东西:
PHP 代码:
You could use something like this:
PHP Code: