|
project_IndexingGWTApp
getting your application indexed in a search engine.
Table of Contents
Indexing and your ApplicationMy application entirely exists in javascript therefore a search engine spider hasn't been able to figure out where the content is. So here what I have been doing to get my content indexed so it's useful to other people. Here is my entirely all GWT application that I have been applying my techniques to: http://GoneVertical.com Keywords and DescriptionI use Google web master tools to verify all the things are working. https://www.google.com/webmasters/tools/
Content for the SpidersAs soon as my page loads, my GWT application loads, that is with a javascript enabled client. Therefore I have to use hidden content for Google's spider to see. Check out my home page source on http://GoneVertical.com to see what I did. Content RedirectionI direct spiders to my content from my homepage. If a user comes, the javascript will load how I want the user so see the content. Since a spider follows links, it will follow my links hidden in white font. The spider will index the content, so when a user clicks on that, the page redirects to the gwt location that has that content. I think this system could get abused and therefore, may not last forever. But used in the proper context, it should work good for getting the spiders to the proper places in your application for good indexing, helping people find what they want when they want.
This allows me to show my content to spiders and use it in my application environment. This has been the most efficient way for me to edit and present my contextual content quickly.
This is what I put on the the page the spider sees. If a javascript client loads the page, the user will get redirected back to the application, where this content is stored.
<!-- This would be the html page that has content -->
page html content goes here.
<script>
// send non web spiders back to gwt version of this same content
// Link according to your application folder mine was in domain.tld/info/page.html
window.location = "../#HowItWorks"
</script>
Hard to ExplainI hoped that help gives an example to get spiders to your site content, while keeping your GWT application model intact. This has been very effective to me and I hope this can give others little tidbits to grow there application indexing with the power of keeping there application fully web 2.0.
|
► Sign in to add a comment
This is the first page i found, that answers me very hot questions about using GWT and take patience for indexing and more..
thanks for that
Do NOT use this! Google will banish you for this technique - you are not allowed to use white font on white background - your page will not get indexed for half a year, after the spider will find out about this. Check out http://www.seges.sk or http://www.seges.com to see an indexable GWT web.
The question is wether a spider will actually index it or get you in trouble using the work around.
Any suggestion on this? If GWT doesn't support the spider who is going to develop a public website using GWT? It's too discouraging for people like me who started using it and preached it as a cool technology. I wish Google could find a fix for this soon.
-Sajil
I think there needs to be a spider system built into GWT, where a spider can call the methods that have contextual data to index.
Any update from Google and others to solve this important problem?