• 30-04-2019, 13:58:36
    #1
    Merhaba, öncelikle konuyu yanlış yere açtıysam şimdiden özür dilerim.

    Yaklaşık 7 yıllık geçmişi olan bir web sitem var. 4-5 ay öncesine kadar herşey günlük gülistanlıkken nasıl olduğunu anlamadığım şekilde siteme Çince linkler eklenmeye başladı, admin şifrem değişti vs. sonrasında bu problemden kurtulmak için hosting firmasıyla birlikte sunucu üzerinde ki dosyaları düzenledik ve yazma ayarlarını kaldırdık. Wordfence eklentisini kurarak saldırılarıda görebilir hale geldim.

    Herşey tekrar düzelmeye başladı google üzerinde linklenmiş olan Çince linkler yavaş yavaş azaldı ve sonunda tamamen kalktı.

    Ancak saldırı öncesi günlük 8 k-10 k civarında olan tekil ziyaretçim gün geçtikçe düşmeye başladı, alexa değeride doğal olarak geriledi.

    Web master tools üzerinde inceleme yapptığımda indexlenenden çok hariç bırakılan sayfalar olduğunu gördüm. Hepside robot.txt ile no index işaratlenmiş görünüyor. Ancak robot.txt şu şekilde

    [HTMLR]Disallow: /cgi-bin/
    Disallow: /wp-admin/
    Disallow: /wp-includes/
    Disallow: /wp-content/
    Disallow: /archives/
    disallow: /*?*
    Disallow: *?replytocom
    Disallow: /wp-*
    Disallow: /author
    User-agent: Mediapartners-Google*
    Allow: /
    User-agent: Googlebot-Image
    Allow: /wp-content/uploads/
     
    User-agent: Adsbot-Google
    Allow: /
     
    User-agent: Googlebot-Mobile
    
     Googlebot Allow: / 
    
    Sitemap: http://www.xyz.net/sitemap.xml
    Sitemap: https://www.xyz.net/sitemap.xml
    [/HTMLR]
    Ayrıca yine yaptığım araştırmalarda .htacces ile ilgili sorun olabileceğini düşündüm, ve o dosyayı da incelediğimde pek sorun edecek bir durum göremedim. Onu da aşağıya ekliyorum.

    Sorum özetle ben bu noindex belasından kurtulup nasıl eski günlerime dönebilirim?
    Yardımlarınız için şimdiden teşekkür ederim.

    #Options All -Indexes
    # BEGIN WpFastestCache
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{HTTP_HOST} ^xyz.net
    RewriteRule ^(.*)$ http\:\/\/www\.xyz\.net\/$1 [R=301,L]
    # Start WPFC Exclude
    # End WPFC Exclude
    # Start_WPFC_Exclude_Admin_Cookie
    RewriteCond %{HTTP:Cookie} !wordpress_logged_in_[^\=]+\=admin
    # End_WPFC_Exclude_Admin_Cookie
    RewriteCond %{HTTP_HOST} ^www.xyz.net
    RewriteCond %{HTTP_USER_AGENT} !(facebookexternalhit|WhatsApp|Mediatoolkitbot)
    RewriteCond %{HTTP_USER_AGENT} !(WP\sFastest\sCache\sPreload(\siPhone\sMobile)?\s*Bot)
    RewriteCond %{REQUEST_METHOD} !POST
    RewriteCond %{HTTPS} !=on
    RewriteCond %{REQUEST_URI} !(\/){2}$
    RewriteCond %{QUERY_STRING} !.+
    RewriteCond %{HTTP:Cookie} !comment_author_
    RewriteCond %{HTTP:Cookie} !wp_woocommerce_session
    RewriteCond %{HTTP:Cookie} !safirmobilswitcher=mobil
    RewriteCond %{HTTP:Profile} !^[a-z0-9\"]+ [NC]
    RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/all/$1/index.html -f [or]
    RewriteCond /home/xyz/public_html/wp-content/cache/all/$1/index.html -f
    RewriteRule ^(.*) "/wp-content/cache/all/$1/index.html" [L]
    </IfModule>
    <FilesMatch "index\.(html|htm)$">
    AddDefaultCharset UTF-8
    <ifModule mod_headers.c>
    FileETag None
    Header unset ETag
    Header set Cache-Control "max-age=0, no-cache, no-store, must-revalidate"
    Header set Pragma "no-cache"
    Header set Expires "Mon, 29 Oct 1923 20:30:00 GMT"
    </ifModule>
    </FilesMatch>
    # END WpFastestCache
    # BEGIN GzipWpFastestCache
    <IfModule mod_deflate.c>
    AddType x-font/woff .woff
    AddType x-font/ttf .ttf
    AddOutputFilterByType DEFLATE image/svg+xml
    AddOutputFilterByType DEFLATE text/plain
    AddOutputFilterByType DEFLATE text/html
    AddOutputFilterByType DEFLATE text/xml
    AddOutputFilterByType DEFLATE text/css
    AddOutputFilterByType DEFLATE text/javascript
    AddOutputFilterByType DEFLATE application/xml
    AddOutputFilterByType DEFLATE application/xhtml+xml
    AddOutputFilterByType DEFLATE application/rss+xml
    AddOutputFilterByType DEFLATE application/javascript
    AddOutputFilterByType DEFLATE application/x-javascript
    AddOutputFilterByType DEFLATE application/x-font-ttf
    AddOutputFilterByType DEFLATE application/vnd.ms-fontobject
    AddOutputFilterByType DEFLATE font/opentype font/ttf font/eot font/otf
    </IfModule>
    # END GzipWpFastestCache
    #Options -Indexes
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    
    
    # Wordfence WAF
    <Files ".user.ini">
    <IfModule mod_authz_core.c>
    	Require all denied
    </IfModule>
    <IfModule !mod_authz_core.c>
    	Order deny,allow
    	Deny from all
    </IfModule>
    </Files>
    
    # END Wordfence WAF
    
    # php -- BEGIN cPanel-generated handler, do not edit
    # NOTE this account's php is controlled via FPM and the vhost, this is a place holder.
    # Do not edit. This next line is to support the cPanel php wrapper (php_cli).
    # AddType application/x-httpd-ea-php56 .php .phtml
    # php -- END cPanel-generated handler, do not edit
  • 06-05-2019, 09:54:09
    #2
    hiç bu sorunla karşılaşan yok mu ?