There's reputation in it for anyone who can help me out! I need to redirect all traffic that requests any page within: /blog or /forum to my homepage. So for example, I want: http://www.mydomain.co.uk/blog/index.html -> http://www.mydomain.co.uk etc. Please help, it's doing my head in!
Hi, If you can run .htacess , try this code in your .htacess site Options -Indexes Options +FollowSymlinks RewriteEngine on RewriteBase / RewriteRule ^(.*)$ http://www.mydomain.co.uk/ [R=301,L] Code (markup): Just place it in the root of old domain in public_html folder. Cheers