how can i redirect the domain? for example i am typing http://www.josh18.com it will be redirect http://josh18.in.com how can i do this?
i have dound some solution.. SEO point of view Which IS Best? http://www.tek-tips.com/faqs.cfm?fid=1487 Or http://www.microsoft.com/technet/pr...a7a-0884-4508-ba95-079f38c77017.mspx?mfr=true
You may use cPanel or write a simple php script, should work perfectly! ob_start(); header("Location: http://josh18.in.com"); ob_end_flush();exit(); upload on http://www.josh18.com.
You should use Domain Forwarding from the control panel of your hosting company, call / email customer care to check if they offer this feature if you cannot find it. In the mean time, if you are using asp.net wth c#, type the following in your Page_Load method in your codebehind; Response.Redirect("http://josh18.in.com");
i have using this is this ok as seo ? -------- <script language="JavaScript"> <!-- if( -1 == location.href. toLowerCase(). indexOf('mydomainA.com') ) { location.href = 'http://mydomainA.com'; } // --> </script>
it all depends on what level you wish to use the redirect try goolge for a more refined answer, you can use 301 redirect or HTML redirect or a domain redirect, Choice is yours
url forwarding is what I would suggest, failing that put a redirect script on the page load of the website so that as soon as a user goes to the site, the first code to run is the redirect.