Hello,

I am building a website with SEO requirements using GWT 2.1M3.
I have followed the steps listed in Google's proposal for Ajax Crawling
(#!....)
I have also been able to generate html snapshots of my page using HTMLUnit.
My server is apache/php, with GWT code as the client using
RequestBuilder/Overlaytypes to retrieve/display info.

But i am unable to link these 2 pieces together.

When a crawler hits an URL like
http://somdomain/war/myapp.html#!showDossier?did=4&artid=5, it actually
fetches
 the contents from http://somdomain/war/myapp.html?
_escaped_fragment_=showDossier?did=4&artid=5



I am not sure how i can process http://somdomain/war/myapp.html?
_escaped_fragment_=showDossier?did=4&artid=5  url at the server.

If i had a java server i would have put a filter to detect the
_escaped_fragment string in URL and take steps, before myapp.html file got
hit.

How do i do this for apache server? If thats not possible, how do i "show"
html snapshots using GWT to the crawler?

Something like

public void onModuleLoad(){

//if Location.getHref contains _escaped_fragment then.
// call url to get the escaped fragment contentStr

RootPanel.get().clear();
RootPanel.get().add(new HTML(contentStr));


}

Please help. Thanks a lot in advance.

Cheers,
Subhro.

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to