2015/03/11

blogspot.kr → blogspot.com 유지하기

블로그 접속시 국가별로 도메인이 바뀌는 것을 막는 방법

html 편집하기로 가서

<head> 와 </head> 사이에 아래를 복사하여 붙여넣으면 됨

============================================
<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>
============================================

출처 : http://www.helperblogger.com/2012/03/always-redirect-your-blogger-blog-to.html

No comments:

Post a Comment