MaviBoncugum adlı üyeden alıntı: mesajı görüntüle
Panel İngilizce DirectAdmin. Yönlendirmeyi tam olarak nerden yapacağımdan emin olamadım. Google webmaster içerisinde verilen bir takım bilgiler var, sadece onları uygulamam yeterli olur mu?
Bilgi için de teşekkürler ayrıca.
Sitenin WORDPRESS olduğunu varsayıyorum: aşağıdaki 3 sql sorgusunu yap.

UPDATE wp_options SET option_value = replace(option_value, 'http://www.eski-adres.com', 'http://www.yeni-adres.com') WHERE option_name = 'home' OR option_name = 'siteurl';

UPDATE wp_posts SET guid = replace(guid, 'http://www.eski-adres.com','http://www.yeni-adres.com');

UPDATE wp_posts SET post_content = replace(post_content, 'http://www.eski-adres.com', 'http://www.yeni-adres.com')

şimdi de eski adresteki .htaccess dosyasını düzenle.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^.eski-adres.com$ [OR]
RewriteCond %{HTTP_HOST} ^www.eski-adres.com
RewriteRule ^/?(.*)$ "http://www.yeni-adres.com/$1" [R=301,L]