php – 如何处理?_escaped_fragment_ =用于AJAX抓取工具?

前端之家收集整理的这篇文章主要介绍了php – 如何处理?_escaped_fragment_ =用于AJAX抓取工具?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在努力使基于 AJAX的网站对SEO友好.正如在网络上的教程中所建议的那样,我在链接添加了“漂亮”的href属性:< a href =“#!site = contact”data-id =“contact”class =“navlink”>контакт< / a&gt ;并且,在默认情况下使用AJAX加载内容的div中,爬虫的 PHP脚本:
$files = glob('./pages/*.PHP'); 

foreach ($files as &$file) {
    $file = substr($file,8,-4); 

}

if (isset($_GET['site'])) {
    if (in_array($_GET['site'],$files)) {
        include ("./pages/".$_GET['site'].".PHP");
    }
}

我有一种感觉,一开始我需要另外从(…)/ index.PHP?_escaped_fragment_ = site = about中删除_escaped_fragment_ = part,因为否则脚本将无法从URL获取站点值,我对吗?

但是,无论如何,我如何知道抓取工具将漂亮的链接(带有#!的链接)转换为丑陋的链接(包含?_escaped_fragment_ =)?我被告知它会自动发生,我不需要提供这种映射,但是Googlebot的抓取并没有向我提供有关URL发生的任何信息.

Google bot会自动查询?_escaped_fragment_ = urls.

所以来自www.example.com/index.PHP#!site=about
谷歌机器人将查询:www.example.com/index.PHP?_escaped_fragment_ = site = about

PHP网站上,您将获得$_GET [‘_ escaped_fragment_’] =“site = about”

如果你想获得“网站”的价值,你需要做这样的事情:

if(isset($_GET['_escaped_fragment_'])){
    $escaped = explode("=",$_GET['_escaped_fragment_']);
    if(isset($escaped[1]) && in_array($escaped[1],$files)){
          include ("./pages/".$escaped[1].".PHP");
    }
 }

看看文档:

https://developers.google.com/webmasters/ajax-crawling/docs/specification

原文链接:https://www.f2er.com/php/132786.html

猜你在找的PHP相关文章