Mobile app version of vmapp.org
Login or Join
Hamm4606531

: SEOs: mobile version using AJAX: how to be properly read by crawlers? Before anything else, I'd like to emphasize that I've already read this and this. Here's what I can do: First choice:

@Hamm4606531

Posted in: #Ajax #Mobile #SearchEngines #Seo

Before anything else, I'd like to emphasize that I've already read this and this.

Here's what I can do:

First choice:


create classical web version with all products in that page - www.myweb.com. create mobile web version with all products in the page and use jQuery Mobile to format all nicely but this may be long to (load + format), and may provide bad user experience - m.myweb.com.

Second choice:


create classical web version with all products in that page
create mobile web version with almost nothing but a Web page showing wait, then download all products in the page using AJAX and use jQuery Mobile to format all nicely. Showing a wait, loading message gives far more time to do whatever I want and may provide better user experience - m.myweb.com.

Question: if I choose the second solution, Google won't read anything on the mobile version (because all products will be downloaded in the page using AJAX), so it wont be properly read by crawlers. What / how shall I do?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamm4606531

1 Comments

Sorted by latest first Latest Oldest Best

 

@Goswami781

I would do Choice (3):


make myweb.com work well on a mobile device using adaptive/responsive design using @media queries so that myweb.com/products (or whatever) works flawlessly on mobile.
not use m.myweb.com at all
not use ajax at all. Show 10 or 20 products on the first page with pagination. Include a link 'Show all products' for those who wish the massive page (like Google)


Splitting off into two domains I would think the rank gets diluted a bit. I also think it is harder to maintain. In this day and age we don't really need to develop on separate domains any more. It would probably best place development hours in making a native phone app (iphone or android) if you really want to get fancy on the mobile.

I outline reasons why going with two domains domains in the same question you referenced in the comments: webmasters.stackexchange.com/a/32728/17132

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme