Basic .htaccess file to WordPress
Ha www nélkül használjuk az adott domaint, akkor a .htaccess file 399. sorában tegyük elérhetővé az átirányítást a www.domain.name-ről a domain.name-re.
#<IfModule mod_rewrite.c>
# RewriteCond %{HTTPS} !=on
# RewriteCond %{HTTP_HOST} ^www\.(.+)$ [NC]
# RewriteRule ^ http://%1%{REQUEST_URI} [R=301,L]
#</IfModule>
wp-config.php-file védelme
<files wp-config.php>
order allow,deny
deny from all
</files>
.htaccess file védelme
<files ~ "^.*\.([Hh][Tt][Aa])">
order allow,deny
deny from all
satisfy all
</files>