Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我遇到了一个问题,我的网站上有一个年龄验证脚本,它会阻止网站上的页面被谷歌索引。解决方法似乎很脆弱,javascript 和 css 覆盖了最常见的解决方案 - 有什么理由不能只使用 PHP 来检测它是否是访问该站点的机器人,如果不是,则显示年龄检查表,如果它是,允许通过?我只是想知道这是否被视为不好的做法......?
这仅适用于 Google Bot,您需要为其他人编辑:
if(strstr(strtolower($_SERVER['HTTP_USER_AGENT']), "googlebot")) { // no age check } else { //age check }