我在测试linting Ajax URL时发现了一种奇怪的行为。可以在http://jankrems.de/hashbang/#!/foo.php
找到简单的技术测试当我直接lint http://jankrems.de/hashbang/foo.php时,一切正常:http://cl.ly/3f3t2c0i3M3t0x2Q1Z3l
当我抓住Ajax-Url http://jankrems.de/hashbang/#!foo.php时,有一些非常奇怪的输出:http://cl.ly/3n3e0r1s122Q1L0U033k
我尝试过使用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>
也许我只是盲目而且缺少明显的东西。