GWT SE friendly application
Asked Answered
S

3

5

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.

Sybilsybila answered 15/3, 2010 at 7:24 Comment(1)
Have you got anything more for SEO? If yes please list here, it would be helpful.Felisha
F
8

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

Felisha answered 15/3, 2010 at 7:33 Comment(1)
Hi, i've tried this approach, however I'm stuck at one part. I know i need to creat a Servlet Filter mapped to the root url, right? so what i do is put the mapping to /* . However, it does not work. The filter is not being called. Am I missing something?Stephine
E
5

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.

Evetteevey answered 29/10, 2011 at 22:0 Comment(0)
S
0

When building an SPA, you don't have to do anything specific for Google anymore. Google's AJAX crawling scheme has been deprecated been Google.

You just have to make sure your website serves your users well, and that it is convenient to use. Google will crawl it in a way relatively close to your user experience.

Should you want to do more, however, you can use Prerender. I would recommend checking that article:

Saving answered 21/3, 2019 at 14:52 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.