How do I make Flex RIA content available to search engines like Google?

How would you make the content of Flex RIA applications available to Google so that Google can index content and show links to items in Flex RIA. Consider an online store created in Flex where the products offered must be indexed by Google. Then the link to Google should open the corresponding product in the RIA.

+3
source share
2 answers

Currently, the best way to make search engine indexed RIAs is called progressive improvement.(or elegant degradation, depending on how you see It). Basically, you create a simple HTML version of the application using the same data as the application. This version should be dynamically generated using some kind of server server technology. This HTML version can be indexed by Google, but each page also contains a check that determines whether the visitor can view the extended version, and if so, replaces the HTML content with the Flash, Flex or Silverlight application, preferably so that the application starts in a state when it shows the same data as the current page. "Replaces" means that it simply embeds the application on top of the HTML content or redirects the user to the page into which it is embedded. The first solution is preferablesince the latter can be consideredcloaking .

One way to synchronize the HTML and RIA versions of the store is to choose a URL scheme and make sure that the RIA uses some kind of deep binding method. If a visitor arrives at a specific element through a search engine, let's say the /items/345corresponding pseudo URL in the RIA should be the same so that you can embed the RIA on top of the page and set that URL as a parameter to make the RIA display the same page as soon as it loads.

Google Yahoo! , Flash Player Flash, " , ". , , , . Flex SEO, , . , , ( ), Flash Player - , , XML-, SWF .., Google. , , , , , , , Googlebot . Yahoo! SWF.

, , Flex SEO ​​ Flex =)

+5

:

http://tech.groups.yahoo.com/group/flexcoders/message/58926

, , google .SWF( , .SWF). SWF .

, /-. .

XML , XSLT Flex. "Ted On Flex" .

http://flex.org/consultants

+1

Source: https://habr.com/ru/post/1696873/


All Articles