Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GWT SE friendly application

Tags:

seo

gwt

How can I develop 'Search Engine Friendly' web app in GWT? Take an example of StackOverflow itself, it's a web app and should be SEO friendly allowing users to search from search engines. If someone wants to develop same app in GWT. How can one make it SEO friendly?

GWT contains a single HTML file. How can we allow its inner content to be visible in SE?

Any suggestion or comment, will really help. Thank you.

like image 711
jaxb Avatar asked Mar 15 '10 07:03

jaxb


2 Answers

Make it crawlable ... this could be helpful http://code.google.com/web/ajaxcrawling/

like image 179
RubyDubee Avatar answered Oct 05 '22 07:10

RubyDubee


As someone who has done this before, I want to warn you. If you are going to do a small application and want to be searched by google, great. http://code.google.com/web/ajaxcrawling/ will work. If you want to build a tool that includes bing, then you will be out of luck. You are better off breaking up your navigation with HTML and embedding your GWT in one of the pages.

Until all search engines can handle this, you will spend precious resources trying to work redirection and carefully reviewing search engine results.

like image 36
Terrance MacGregor Avatar answered Oct 05 '22 05:10

Terrance MacGregor