1
Chúng tôi vui mừng chào đón các bạn và muốn đảm bảo rằng bạn có một khởi đầu tốt đẹp tại đây. Để giúp bạn dễ dàng hòa nhập, dưới đây là một hướng dẫn ngắn về cách thức hoạt động của diễn đàn và cách bạn có thể phát triển từ một Thành viên mới thành một Guru!
Chúng tôi rất vui mừng được đồng hành cùng bạn trong hành trình phát triển và mong rằng bạn sẽ có những trải nghiệm tuyệt vời tại diễn đàn này!
<IfModule mod_expires.c>
ExpiresActive On
ExpiresByType image/jpg "access plus 1 year"
ExpiresByType image/jpeg "access plus 1 year"
ExpiresByType image/gif "access plus 1 year"
ExpiresByType image/png "access plus 1 year"
ExpiresByType text/css "access plus 1 month"
ExpiresByType application/pdf "access plus 1 month"
ExpiresByType text/x-javascript "access plus 1 month"
ExpiresByType application/x-shockwave-flash "access plus 1 month"
ExpiresByType image/x-icon "access plus 1 year"
ExpiresDefault "access plus 2 days"
</IfModule>
server {
location ~* \.(jpg|jpeg|gif|png|css|js|ico|svg)$ {
expires 1y;
add_header Cache-Control "public, no-transform";
}
}
upload_max_filesize = 2M
post_max_size = 2M
php_value upload_max_filesize 2M
php_value post_max_size 2M
@ini_set('upload_max_filesize', '2M');
@ini_set('post_max_size', '2M');
Lưu tệp.