• 30-09-2020, 14:54:41
    #1
    Wordpress'te bu soruna çözüm bulabilen varmı mail hesabımız farklı ip'de fakat google bulup webmail indexlemiş,

    İnternette ve r10'da araştırdım bulamadım

    Çözümü bilen varmı?
    Not: Subdomain'de duruyor mail
  • 30-09-2020, 14:58:30
    #2
    lsa
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Google da söyle bir cevap buldum. Belki işinize yarar:

    https://support.google.com/webmaster...26137776?hl=en
  • 30-09-2020, 15:42:04
    #3
    lsa adlı üyeden alıntı: mesajı görüntüle
    Google da söyle bir cevap buldum. Belki işinize yarar:

    https://support.google.com/webmaster...26137776?hl=en
    Alıntı
    Ok, yes, so the URL

    https://mail.domain.com/essays/... etc responds exactly the same as https://www.domain.com/essays/...

    which is a pretty clear indicator that the mail.domain.com is being routed to the same vhost as www. Don't know exactly how this is setup, possibly with a "ServerAlias *.domain.com" or whatever. (it might also just be the first/default vhost)

    ... in which case, can just set it up in the .htaccess for the main www domain....

    RewriteEngine On
    RewriteCond %{HTTP_HOST} ^mail.
    RewriteRule . - [F,L]

    ... that makes sure the forbidden is only done on the mail. hostname. And hence make it unindexable.


    Don't see anything indexed in webmail.domain.com - so nothing to worry about there. It does seem to be routed to a dedicated vhost (with the webmail app installed!)
    Evet gördüm fakat yukarıda ne demek istediğini anlayamadım.