08 September 2015

Alasan Blog Pada Blogger (Blogspot) Beralih Subdomain

Tidak perlu khawatir jika Anda melihat perubahan pada URL blog pada Blogger. Misalnya jika URL blog Anda adalah http://dipoartketipe.blogspot.com/ berubah menjadi http://dipoartketipe.blogspot.co.id/, hal tersebut merupakan pembaruan yang dilakukan Google untuk mendukung pengguna agar dapat secara bebas mengekspresikan dirinya tentunya disertai dengan rasa tanggung jawab atas konten yang dipublikasikan.

Dipopedia-AlasanBlogPadaBloggerBeralihSubdomain.png

Berikut yang dicetuskan Google melalui postingnya di Official Google Blog dengan judul Our approach to free expression and controversial content.

For products like Blogger, orkut, Google+ and YouTube—where we host the content—we encourage users to express themselves freely, but we also want to ensure that people behave responsibly, so we set guidelines covering the use of our different services. For example, no hate speech, no copyright-infringing content, no death threats, no incitement to violence. And when we’re notified about content that either violates those guidelines or breaks the law—for example, we receive a court order—we will remove it, or restrict it in the country where it’s illegal. Earlier this year (2012), for example, we removed a number of specific webpages from Google properties in India after a court ruled that they violated Indian law.

Jika tidak ingin URL blog beralih subdomain maka bisa menambahkan ncr (no country redirect - tidak dialihkan ke domain negara tertentu) pada URL blog tersebut, contoh:
  • http://dipoartketipe.blogspot.com/ncr yang akan berlaku pada seluruh blog, atau
  • http://dipoartketipe.blogspot.com/ncr/2015/08/test-background.html yang akan berlaku pada laman posting/laman statis.

Atau bisa juga dengan memasang kode javascript di bawah ini:
<script type="text/javascript">
/* Mendapatkan URL lengkap dari halaman blogger yang diakses */
var blog = document.location.href.toLowerCase();

/* Jangan dialihkan jika domain adalah .com */
if (!blog.match(/\.blogspot\.com/)) {

/* Menambah ncr pada URL blog agar tidak dialihkan terjadi pengalihan ke TLD negara pengakses */
blog = blog.replace(/\.blogspot\..*?\//, ".blogspot.com/ncr/");

/* Open the new URL in the current tab */
windows.location.replace(blog);

}
</script>

Pengalihan URL blog ini memang memiliki risiko terhadap optimasi mesin telusur namun Blogger telah mengusahakan untuk meminimalisir dampak negatif yang mungkin terjadi dimana robot mesin telusur dapat menganggap versi blogspot.com blog sebagai versi yang resmi.
Tidak ada komentar: