Recently Blogger changed the it's user's , blog's url from .com to their specfic country URL .It gave a big loss to many Blogger blogs . So I'm with the solution . How to change it back again , to com URL .
Find <head> Code in Edit html tab of bloggers
Below the <head> paste the below code
<script type=
"text/javascript"
>
if
((window.location.href.toString().indexOf(
'.com/'
))==
'-1'
)
{
window.location.href = window.location.href.toString().replace(
'.blogspot.in/'
,
'.blogspot.com/ncr/'
).replace(
'.blogspot.com.au/'
,
'.blogspot.com/ncr/'
).replace(
'.blogspot.com.us/'
,
'.blogspot.com/ncr/'
);
}
</script>
0 comments: