I'm getting problem with redirect from old url to new urls when moved a site to a new host.
Hi KellyLC,
On your last sentence I can't help feeling that perhaps you have moved hosts? If that is the case then you will need to set the DNS to point to the new webhost within your domain registrar settings account...
If its a domain redirect - then the easy way to do that is via your web host control panel via Domains|Redirects .... Just enter the new domain url for the redirect here...
In addition with redirects you should also consider whether its a permanent (301) or temporary redirect (302)... The permanent redirect 301 will transfer link juice and temporary will not...
For domain level redirect add this to your .htaccess file (noting the code 301 or 302 for permanent or temporary):
Code:
Redirect 301 / http://my-new-website.com/
For page redirects use this:
Code:
Redirect /index.html http://my-new-website.com/newdirectory/
I hope that helps!
Best of Luck,
Sid