googlebot

Is it fine to use span elements in div elements?

醉酒当歌 提交于 2019-11-29 18:16:07
I am making a website with personal articles. The body of my articles is a basic div containing paragraphs, but recently I found it useful to use some span 's out of the paragraphs to manage my content as desired, hence in the div 's. As the web semantic becomes an important role and becomes more and more well constrained, I was curious of the downsides of such a practice. I am not too familiar with the standards of HTML yet. However, I was thinking using span 's in div 's is semantically not clean. Is the Googlebot going to soil the referencing on that? There is nothing wrong with using a

jQuery causing 404 errors in Webmaster Tools on /a directory

不羁的心 提交于 2019-11-29 12:49:59
The Googlebot seems to be crawling up inside my jQuery and creating links ending in /a that don't exist and then reporting them as 404 errors. http://www.mySite.com/a The site validates green at the W3C. The "/a" is coming from inside jQuery itself. Edit: The following is a line of code within jQuery v1.5 and 1.5.2 (the only two I looked inside) <a href='/a' style='color:red;float:left;opacity:.55;'>a</a> For now, I'm redirecting it within htaccess before it gets out of hand... Redirect 301 /a http://www.mysite.com Does anyone know why/how the Googlebot would go inside jQuery? EDIT: I've since

<noindex> tag for Google

淺唱寂寞╮ 提交于 2019-11-29 11:12:47
问题 I would like to tell Google not to index certain parts of the page. In Yandex (russian SE) there's a very useful tag called <noindex> . How can it be done with Google? 回答1: You can prevent Google from seeing portions of the page by putting those portions in iframes that are blocked by robots.txt. robots.txt Disallow: /iframes/ index.html This text is crawlable, but now you'll see text that search engines can't see: <iframe src="/iframes/hidden.html" width="100%" height=300 scrolling=no>

Avoid crawling part of a page with “googleoff” and “googleon”

耗尽温柔 提交于 2019-11-29 09:13:18
I am trying to tell Google and other search engines not to crawl some parts of my web page. What I do is: <!--googleoff: all--> <select name="ddlCountry" id="ddlCountry"> <option value="All">All</option> <option value="bahrain">Bahrain</option> <option value="china">China</option> </select> <!--googleon: all--> After I uploaded the page, I noticed that search engines are stilling rendering elements within the googleoff markup. Am I doing something wrong? "googleon" and "googleoff" are only supported by the Google Search Appliance (when you host your own search results, usually for your own

Is it fine to use span elements in div elements?

心不动则不痛 提交于 2019-11-28 14:02:19
问题 I am making a website with personal articles. The body of my articles is a basic div containing paragraphs, but recently I found it useful to use some span 's out of the paragraphs to manage my content as desired, hence in the div 's. As the web semantic becomes an important role and becomes more and more well constrained, I was curious of the downsides of such a practice. I am not too familiar with the standards of HTML yet. However, I was thinking using span 's in div 's is semantically not

jQuery causing 404 errors in Webmaster Tools on /a directory

*爱你&永不变心* 提交于 2019-11-28 06:34:39
问题 The Googlebot seems to be crawling up inside my jQuery and creating links ending in /a that don't exist and then reporting them as 404 errors. http://www.mySite.com/a The site validates green at the W3C. The "/a" is coming from inside jQuery itself. Edit: The following is a line of code within jQuery v1.5 and 1.5.2 (the only two I looked inside) <a href='/a' style='color:red;float:left;opacity:.55;'>a</a> For now, I'm redirecting it within htaccess before it gets out of hand... Redirect 301

Is there a way to make robots ignore certain text?

瘦欲@ 提交于 2019-11-27 12:42:23
I have my blog (you can see it if you want, from my profile), and it's fresh, as well as google robots parsing results are. The results were alarming to me. Apparently the most common 2 words on my site are "rss" and "feed", because I use text for links like "Comments RSS", "Post Feed", etc. These 2 words will be present in every post, while other words will be more rare. Is there a way to make these links disappear from Google's parsing? I don't want technical links getting indexed. I only want content, titles, descriptions to get indexed. I am looking for something other than replacing this

Google bot crawling on AngularJS site with HTML5 Mode routes

余生长醉 提交于 2019-11-26 22:44:57
We have an AngularJS site using HTML5 routes. I just did some test "Fetch as Google" runs. The results are a bit confusing: On the fetching tab, I see our site as it looks on view source, with all the front end bindings {{ }}, and not all the HTML rendered On the rendering tab, our site looks perfectly fine, no {{ }} variables, it seems like Google bot fetched and rendered the site fine, which is maybe in line with this, http://googlewebmastercentral.blogspot.ae/2014/05/rendering-pages-with-fetch-as-google.html . However, we are already prepared for Google to not be able to crawl our site, so

Is there a way to make robots ignore certain text?

天涯浪子 提交于 2019-11-26 16:08:46
问题 I have my blog (you can see it if you want, from my profile), and it's fresh, as well as google robots parsing results are. The results were alarming to me. Apparently the most common 2 words on my site are "rss" and "feed", because I use text for links like "Comments RSS", "Post Feed", etc. These 2 words will be present in every post, while other words will be more rare. Is there a way to make these links disappear from Google's parsing? I don't want technical links getting indexed. I only

Google bot crawling on AngularJS site with HTML5 Mode routes

这一生的挚爱 提交于 2019-11-26 08:25:57
问题 We have an AngularJS site using HTML5 routes. I just did some test \"Fetch as Google\" runs. The results are a bit confusing: On the fetching tab, I see our site as it looks on view source, with all the front end bindings {{ }}, and not all the HTML rendered On the rendering tab, our site looks perfectly fine, no {{ }} variables, it seems like Google bot fetched and rendered the site fine, which is maybe in line with this, http://googlewebmastercentral.blogspot.ae/2014/05/rendering-pages-with