• 13-08-2013, 22:43:23
    #1
    Evet arkadaşlar güvenlik ve seo açısından elinizde olup paylaşabileceğiniz htaccess dosyası varmı tahminen çoğu arkadaşda faydası olacak bunun...
  • 21-09-2013, 09:56:45
    #2
    güzel bir talep bence bende arıyorum
  • 21-09-2013, 10:01:34
    #3
    Benim worpdresslerde genelde kullandığım .htaccess şöyle:

    Alıntı
    #DIZIN LISTELEMEYI ENGELLE
    Options All -Indexes

    #wp-config.php ERISIM ENGELLEMESI
    <files wp-config.php>
    order allow,deny
    deny from all
    </files>

    #SUNUCU SURUM IMZALARINI KALDIR
    ServerSignature Off

    #ADMIN PANELI SIFRELE
    ErrorDocument 401 default
    AuthUserFile /home/user/.htpasswd
    AuthName "Blog"
    AuthType Basic
    <Files "wp-login.php">
    require valid-user
    </Files>
    .htpasswd dosyası oluşturucu: http://www.htaccesstools.com/htpasswd-generator/
  • 22-09-2013, 18:38:56
    #4
    Üyeliği durduruldu
    Dostnamez adlı üyeden alıntı: mesajı görüntüle
    Evet arkadaşlar güvenlik ve seo açısından elinizde olup paylaşabileceğiniz htaccess dosyası varmı tahminen çoğu arkadaşda faydası olacak bunun...
    ben bu şekil yapdım hacker arkadaslar 1 kere sitemi hack ladi önlem aldım

    # 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
    # Prevent folder browsing
    Options All -Indexes

    <files .htaccess>
    order allow,deny
    deny from all
    </files>

    <files wp-config.php>
    order allow,deny
    deny from all
    </files>

    <files wp-load.php>
    order allow,deny
    deny from all
    </files>
    [/CODE]