Hello i want to redirect the homepage of my site www.icbse.com to subdomain like papers.icbse.com ! Please tell me what should i do ??
If you use the PHP method, you should use this insetead: <?php header('Location: http://subdomain.icbse.com', true, 301); ?> Code (markup): Which makese sure it adds the 301 (permanently redirected) header for google and other search engines.
And if it permanent then you can forward the domain to your subdomain at your registrar ( if he provided DNS managment or ask you webhost to do so). it would be for say faster than above methods.
or if you have only static html pages, use this instead Place the following HTML redirect code between the <HEAD> and </HEAD> tags of your HTML code. <meta HTTP-EQUIV="REFRESH" content="0; url=http://www.yourdomain.com/subdomain/"> The above HTML redirect code will redirect your visitors to another web page instantly. The content="0; may be changed to the number of seconds you want the browser to wait before redirecting.
a little anoying hack <meta HTTP-EQUIV="REFRESH" content="0; url=mailto:contact@im.com"> let me know if it works