Forum Moderators: phranque
Site A have a lot of backlink. When I check the backlink of site B the backlinks of site A are not counted.
following the redirection that I use in the Site A .htaccess file:
RedirectMatch permanent ^/*$ siteB
do I miss something , or may I am expecting something that will never occur?
thanks
A simpler and better solution would be to use the Redirect [httpd.apache.org] directive instead. This directive uses prefix-matching rather than regular expressions pattern matching. Assuming that your siteB is named 'www.example/com', the syntax would be:
Redirect permanent / http://www.example.com/
Jim