We need to redirect base url's with a server code so how should I move mysite.com to mysite.com/Portal ? Which redirect code is best for SEO 200 or 301? Gut feeling is a 301 redirect code? let me know Thanks LR
Just make a 301 permanent redirect code which will be fine for SEO Example: RedirectMatch permanent ^/$ http://www.mysite.com/Portal PHP:
301 redirect. But I guess the above will be a never ending loop. Even /Portal will be chainly redirectoed to /Portal...isn't it ?