我正在努力使基于
AJAX的网站对SEO友好.正如在网络上的教程中所建议的那样,我在链接中添加了“漂亮”的href属性:< a href =“#!site = contact”data-id =“contact”class =“navlink”>контакт< / a> ;并且,在默认情况下使用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.
原文链接:https://www.f2er.com/php/132786.html所以来自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