|
Technology -
Blogging
|
|
Thursday, 03 July 2008 16:12 |
If you want to redirect your blog to your site than follow the following simple steps:- (1) sign into your Blogger Dashboard, click LAYOUT, then go to the EDIT HTML. (2) Than in template editor window, add this code into your template just below the <head> tag. <meta name="robots" content="noindex" /> <script type="text/javascript"><!--//--><![CDATA[//><!-- var url = "URL of where you want the blog to be redirected" (document.images) ? location.replace(url) : location.href = url; //--><!]]></script> <meta http-equiv="refresh" content="0;URL=URL of where you want the blog to be redirected" />
(3)Then add this code just below the <body> tag. <p><a href="/URL of where you want the blog to be redirected"></a>.</p> Don't forget to replace URL of where you want the blog to be redirected with the actual URL of your site you want to redirect.
|