Linting Ajax URL

时间:2011-10-24 12:47:41

标签: opengraph facebook-opengraph hashbang

我在测试linting Ajax URL时发现了一种奇怪的行为。可以在http://jankrems.de/hashbang/#!/foo.php

找到简单的技术测试

我尝试过使用Twitter hashbang-Urls并正确处理它们。我使用的代码非常简单。在index.php中有一个转发...

<?php
if(isset($_GET['_escaped_fragment_'])) {
    Header( "HTTP/1.1 301 Moved Permanently" );
    header('Location: /hashbang'.$_GET['_escaped_fragment_']);
    die();
}
?>

在foo.php中,我只输出Open Graph标签......

 <!DOCTYPE HTML>
 <html prefix="og: http://ogp.me/ns#">
 <head>
    <meta property="og:title" content="Foo" />
    <meta property="og:url" content="http://jankrems.de/hashbang/foo.php" />
    <meta property="og:description" content="The foo to go to" />
    <meta property="og:image" content="http://tailsmagazines.files.wordpress.com/2009/04/kitten.jpg" />
 </head>
 </html>

也许我只是盲目而且缺少明显的东西。

0 个答案:

没有答案