• 17-02-2016, 05:26:29
    #1
    Merhabalar;
    İnternet sitemde bir türlü baş edemediğim 2 sorunum var bunuda sizlere 2 soru eşliğinde sormak istedim çözebilirsem çok güzel olacak, Öncelikle resme bir göz atalım.



    Soru 1 : Google reis'in bu isteğini nasıl yerine getirebilirim (Wordpresste üstten kaldırmak istiyorum.)

    Soru 2 : Siteme ait olmayan bu linkleri nasıl gizleyebilirim ya da nasıl bir yol izlemeliyim. Tarayıcı önbellekleme özelliğinden şu şekilde yararlandım ama fayda etmedi sanırım.
    <ifmodule mod_expires.c>
    <filesmatch "\.(jpg|gif|png|css|js)$">
    ExpiresActive on
    ExpiresDefault "access plus 1 year"
    </filesmatch>
    </ifmodule>
    Şimdiden çok teşekkürler.
  • 17-02-2016, 10:44:00
    #2
    1- Bunun için bir cache eklentisi kullan. Wp Fastest Cache öneririm

    2. Sitene ait olmayan js ve css lerde bir önbellekleme yapamazsın
  • 17-02-2016, 11:00:20
    #3
    Üyeliği durduruldu
    1. Problem için yapacağın bir şey yok. Headerda cağırılan css dosyalarını footerde çağırırsan belki gider(bazen footera alsan dahi aynı hatayı çıkarır). Fakat asıl düzgün olan css dosyalarının headerde çağırılması js dosyalarının ise footerde çağırılmasıdır.

    2. Mesele için şunu kullanabilirsin:

    # Enable GZIP
    <ifmodule mod_deflate.c>
    AddOutputFilterByType DEFLATE text/text text/html text/plain text/xml text/css application/x-javascript application/javascript
    BrowserMatch ^Mozilla/4 gzip-only-text/html
    BrowserMatch ^Mozilla/4\.0[678] no-gzip
    BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
    </ifmodule>
    
    # Expires Headers - 2678400s = 31 days
    <ifmodule mod_expires.c>
      ExpiresActive On
      ExpiresDefault "access plus 2678400 seconds"
      ExpiresByType text/html "access plus 7200 seconds"
      ExpiresByType image/gif "access plus 2678400 seconds"
      ExpiresByType image/jpeg "access plus 2678400 seconds"
      ExpiresByType image/png "access plus 2678400 seconds"
      ExpiresByType text/css "access plus 750000 seconds"
      ExpiresByType text/javascript "access plus 2678400 seconds"
      ExpiresByType application/x-javascript "access plus 2678400 seconds"
    </ifmodule>
     
    # Cache Headers
    <ifmodule mod_headers.c>
      # Cache specified files for 31 days
      <filesmatch "\.(ico|flv|jpg|jpeg|png|gif|css|swf)$">
      Header set Cache-Control "max-age=2678400, public"
      </filesmatch>
      # Cache HTML files for a couple hours
      <filesmatch "\.(html|htm)$">
      Header set Cache-Control "max-age=7200, private, must-revalidate"
      </filesmatch>
      # Cache PDFs for a day
      <filesmatch "\.(pdf)$">
      Header set Cache-Control "max-age=86400, public"
      </filesmatch>
      # Cache Javascripts for 31 days
      <filesmatch "\.(js)$">
      Header set Cache-Control "max-age=2678400, private"
      </filesmatch>
    </ifmodule>