Showing posts with label Blogger Tips. Show all posts
Showing posts with label Blogger Tips. Show all posts
So here I’m going to guide you about how
you can show your picture in google search result whenever your website
is listed in search result. Just follow the steps what i have mentioned.
But before doing so I would like to let you know about who can do this ?
A website owner or blogger or an article writer can show their picture
in google search result page. All you need to do is to follow these
steps. But before that I would also like to let you know about how your
picture will show in google search result page. Here i
have mentioned myself in google search result while searching my article
on google. This is same how your picture will look after you will do
all the thing I’m going to tell you. Okey what you need to do is to
follow these steps.
Step 1 : Just Create an “about me” or “any page viewing you information” on you blog and link that page to your google profile.
<a href="https://profiles.google.com/your_ID" rel="me">My Profile</a>
Step 3: In this step you must ensure that the blog articles you have written have a link to your “about me ” page.
This hyperlink should have the rel=”author” attribute as shown below.
<a href="http://yourwebsite.com/about/" rel="author">My short bio</a>
Step 4: This is the last step. Sign in to your Google Profiles account and and add a new custom link that points to your “About Me” page. Tick the option that says “This page is specifically about me” and save the changes. You are almost done. wait when google will crawl you website again and your picture will show on google search result page.
Blogger redirects blogs to country-specific domains in at least 15
countries. This script will help prevent your blogs from redirecting to
country URLs.
Google, as most would know, redirects Blogger blogs to country-specific domains. For instance, if you open example.blogspot.com in your browser, you might be redirected to example.blogspot.in if you are located in India or to example.blogspot.com.au if you access the same blog from Australia.
The main reason why Google implemented country-specific redirection is selective censorship – they can now easily block a blog, or a particular page on a blog, in one country but still serve it in other regions.

India [blogspot.in], Australia [blogspot.com.au], UK [blogspot.co.uk], Japan [blogspot.jp], New Zealand [blogspot.co.nz], Canada [blogspot.ca], Germany [blogspot.de], Italy [blogspot.it], France [blogspot.fr], Sweden [blogspot.se], Spain [blogspot.com.es], Portugal [blogspot.pt], Brazil [blogspot.com.br], Argentina [blogspot.com.ar], Mexico [blogspot.mx]
Go to your blog inside the Blogger Dashboard and choose Template. Then click the “Edit HTML” button followed by “Proceed.” Next, copy-paste the following code into the template after the <head> tag.
This simple script parses the domain name (document.location.hostname) of your blog page and if it includes a country-specific URL (like blogspot.in), it will force-redirect the visitor to the blogspot.com address using the /ncr switch.
The main reason why Google implemented country-specific redirection is selective censorship – they can now easily block a blog, or a particular page on a blog, in one country but still serve it in other regions.
Blogger and Country-Specific Domains
My traffic logs suggest that country-specific redirection in Blogger is now live in at least 15 countries. Here’s a complete list:India [blogspot.in], Australia [blogspot.com.au], UK [blogspot.co.uk], Japan [blogspot.jp], New Zealand [blogspot.co.nz], Canada [blogspot.ca], Germany [blogspot.de], Italy [blogspot.it], France [blogspot.fr], Sweden [blogspot.se], Spain [blogspot.com.es], Portugal [blogspot.pt], Brazil [blogspot.com.br], Argentina [blogspot.com.ar], Mexico [blogspot.mx]
Prevent Blogger from Redirecting to Country-Specific Domains
This country based URL redirection does mean some negative consequences to your Blogger blog. For example:- The social stats – or Facebook Likes, Google +1s and Tweet counts – for your blog stories may be diluted as the URLs for the same story become different from different visitors.
- You will have a similar problem if you are using an external commenting platform like Disqus or Facebook Comments.
- Also, if canonicalization isn’t implemented properly, it may cost you some Google juice as external websites may link to your country-specific pages.
Go to your blog inside the Blogger Dashboard and choose Template. Then click the “Edit HTML” button followed by “Proceed.” Next, copy-paste the following code into the template after the <head> tag.
<script type="text/javascript">
var blog = document.location.hostname;
var slug = document.location.pathname;
var ctld = blog.substr(blog.lastIndexOf("."));
if (ctld != ".com") {
var ncr = "http://" + blog.substr(0, blog.indexOf("."));
ncr += ".blogspot.com/ncr" + slug;
window.location.replace(ncr);
}
</script>
Click the Save Template button and now your Blogger Blog will always serve with the blogspot.com URL.
This simple script parses the domain name (document.location.hostname) of your blog page and if it includes a country-specific URL (like blogspot.in), it will force-redirect the visitor to the blogspot.com address using the /ncr switch.

