|
I have a registered domain name for example like www.12345.com
At the same time, I have a WordPress blog for example like www.12345.wordpress.com
Eventually I am going to web host this blog but for the time being, is there a way for people to enter www.12345.com and get automatically redirected to www.12345.wordpresss.com?
How do I redirect a URL to another site?
Usually you will find it in control panel.
How do I redirect a URL to another site?
Hi there .. it's very simple
add this to your webpage at the beginning.
<meta http-equiv="refresh" content="2;url=www.12345.
wordpresss.com">
Hope this works
How do I redirect a URL to another site?
Lots of ways.
<meta http-equiv="refresh" content="8;url=http://www.anycompany.com... /> is one
<?php
header("location:http://anycompany.com...
exit;
?> is another
and one more <%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader "Location", "http://www.anycompany.com/index.html"
%>
|