我有一个包含一些 ajax 内容的网站。ajax内容页面的链接如下
!/category/id/ident/name/
apache rewrite RewriteRule ^category/([^/]+)/([^/]+)/([^/]+)/$ /somephp.php?cat_id=$1&ident=$2 [L] 将这些链接重定向到 / somephp.php?cat_id=id&ident=ident
我假设谷歌向 /_escaped_fragment_?category/id/ident/name/ 发出请求
也就是说,新的谷歌请求中没有键=值对。然后我假设我可以将其重写为 /googlecontent.php?cat_id=id 以便提供 googles html 快照。我无法找到有关 _escaped_fragment_ 的任何信息?无论没有键=值对,谷歌可以吗?