Tuesday, September 30, 2014

Microsoft announced windows 10 Skips windows 9

Update:- September 30, 2014


Microsoft has just announced its next version of Windows, It is Windows 10 on San Francisco.

Microsoft Windows 10 will be run on different devices from smartphones and tablets to PCs and Xbox games consoles, with applications sold from a single store.


Features:-
  • Resizable tiles.
  • Much more User's Favorite applications.
  • Quick view of notification from weather, facebook, email, etc.

The company said the facility was intended to make the software seem familiar to both users of Windows 8 and Windows 7.


Read More »

How to automatically Redirect Blogger Blog(blogspot) to another blog or Domain


We may have created lots of blog and some of them are now popular with good traffics, Now we want to merge both blogspot sites to get double traffics from both blogs, at that time we have to take a 302 Redirection.

When this to use:-


  • This will be useful when you have added the custom domain with new platform like Wordpress.

  • This will be very useful when you have the broken links and 404 pages.

  • This will be useful when you have many popular blogs with good traffics, now you want to migrate all of those blog.
There are 2 kinds of 302 Redirection,  Redirection of Specific Pages, Redirection of Whole Blog, and Redirection in a specific time.

How to redirect automatically blog or blog's pages to another blog or domain?

Go to Blogger Dashboard >> Template >> Edit HTML.
Now search ( Ctrl+f) for </head> tag.

If you want to redirect whole blog copy the below code just above the </head> tag.


1
<script type='text/javascript'>
2
  var d='<data:blog.url/>';

3
  d=d.replace(/.*\/\/[^\/]*/, '');
4
  location.href = 'http://startingphaseofc.blogspot.com';

5
</script>

change http://startingphaseofc.blogspot.com  with your own URL, Then save the template and you are done.

If you want to redirect Specific Page copy the below code just above </head> tag.

1
<script>

2
if(window.location.href == 'http://yourblog.blogspot.com/pages')

3
{

4
window.location="http://startingphaseofc.blogspot.com";

5
}

6
</script>

Remember, Change http://yourblog.blogspot.com/pages with your source URL and http://startingphaseofc.blogspot.com with your Destination URL. then save the template and you are done.

If you want to redirect your blog to another blog or domain in specific time, copy the below code just above the </head> tag.

1
<meta content='5;url=http://startingphaseofc.blogspot.com' http-equiv='refresh'/>

Now remember  http://startingphaseofc.blogspot.com with your Destination URL then save the tempalte and you are done.

If you find this article helpful, Please Response............

Read More »