Sử dụng htaccess để tối ưu và bảo mật website
#Tắt chữ ký số của web server
order allow,deny
deny from all
# Bảo vệ file cấu hình config.php# disable the server signature
ServerSignature Off
# limit file uploads to 10mb
LimitRequestBody 10240000
# Giới hạn truy cập, chặn IP
order allow,deny
deny from all
# Tạo Trang lỗi tùy chỉnhorder allow,deny
#deny from 000.000.000.000
allow from all
# Tắt liệt kê nội dung thư mục# custom error docs
ErrorDocument 404 /notfound.php
ErrorDocument 403 /forbidden.php
ErrorDocument 500 /error.php
# Chuyển hướng 301Options All -Indexes
# Khóa tên miền tham chiếuRedirect 301 /old.php http://www.yourdomain.com/new.php
Chống ăn cắp băng thôngRewriteEngine on
RewriteCond %{HTTP_REFERER} digg\.com [NC]
RewriteRule .* – [F]
Nén file#disable hotlinking of images with forbidden or custom image option
RewriteEngine on
RewriteCond %{HTTP_REFERER} !^$
RewriteCond %{HTTP_REFERER} !^http://(www\.)?yourdomain.com/.*$ [NC]
#RewriteRule \.(gif|jpg)$ – [F]
#RewriteRule \.(gif|jpg)$ - [R,L]
Tránh trùng lặp nội dung# php compression – use with caution
php_value zlib.output_compression 16386
# Chống spam comments# set the canonical url
RewriteEngine On
RewriteCond %{HTTP_HOST} ^yourdomain\.com$ [NC]
RewriteRule ^(.*)$ http://www.yourdomain.com/$1 [R=301,L]
RewriteEngine On
RewriteCond %{REQUEST_METHOD} POST
RewriteCond %{REQUEST_URI} .comments-post\.php*
RewriteCond %{HTTP_REFERER} !.*yourdomain.com.* [OR]
RewriteCond %{HTTP_USER_AGENT} ^$
RewriteRule (.*) ^http://%{REMOTE_ADDR}/$ [R=301,L]
Theo dòng sự kiện
Những tin mới hơn
Những tin cũ hơn