Click to See Complete Forum and Search --> : Redirect URL
shahkr
January 1st, 2009, 08:05 PM
Hello,
I am not IT person.
I want to redirect visitor of my( old and not in use )web site abc.com to new web site xyz.com.
How can I do it and what I need to do it? Can I do it myself or do I need to go to website expert?Can you explain me in details step by step?
Your answer is appriciated.
Thank you.
TheCPUWizard
January 1st, 2009, 08:10 PM
If you still own the domain, you simply put of a single page that performs the action, or configure the server software (IIS, Apache, etc) to the new IP.
Alternativle (again if you still own the original domain, you can simply register the same IP address for both DNS entries.
If you DONT on the site anymore, then you are out of luck, and who ever does own it, can do what ever they like.
zett
January 15th, 2009, 09:32 AM
Create a simple index.HTML with this tag:
<meta http-equiv="refresh" content="0;URL=http://www.yourwebsite.com">
PeejAvery
January 15th, 2009, 11:33 AM
If you are using Apache, you really should use a 301 redirect. Put the following in an .htaccess file on the root of the abc.com web server.
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*) http://www.xyz.com/$1 [R=301,L]
If you are using IIS, then you can set up a permanent redirect through the internet services manager.
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.