Re: HashInURI

Google recommendations for Making AJAX Applications Crawlable
http://code.google.com/web/ajaxcrawling/docs/getting-started.html


    2. Set up your server to handle requests for URLs that
    contain _escaped_fragment_
    
     Suppose you would like to get
    www.example.com/index.html#!key=value indexed. Your part
    of the agreement is to provide the crawler with an HTML
    snapshot of this URL, so that the crawler sees the
    content. How will your server know when to return an
    HTML snapshot instead of a regular page? The answer is
    the URL that is requested by the crawler: the crawler
    will modify each AJAX URL such as
    
        www.example.com/ajax.html#!key=value

    to temporarily become
        
        www.example.com/ajax.html?_escaped_fragment_=key=value
        


-- 
Karl Dubost - http://dev.opera.com/
Developer Relations & Tools, Opera Software

Received on Thursday, 10 February 2011 16:37:19 UTC