Yes, I do create two parallel versions of the web page, I'll explain it.
What I have in the main page ( where I would like users to go ) is a menu on the right side, and some news on the left side and a central div where I load page contents. Both menus, news and main menu, are loaded using Ajax, from javascript. Same happens with link on the menu and each news item, each of them loads some content on the central div of the web page, same way as I said above, using Ajax in javascript.
The problem using this approach is that web crawlers will not see anything due to all links are implemented from javascript (overwriting the on click property) and the main page is initially empty. I thought about implementing ( of course in a automatic way ) a parallel web interface with plain html with all the database contents, trying to make easier the live to web crawlers. The problem is that search engines will redirect users to this parallel web interface which is not my desire.
Could this be solved in some other way?
As I read on the above posts, you all recommend the use of tag noscript.
|