mirror of
https://github.com/helenclx/leilukin-site.git
synced 2025-04-08 03:42:42 +00:00
21 lines
558 B
Plaintext
21 lines
558 B
Plaintext
---
|
|
permalink: .htaccess
|
|
eleventyExcludeFromCollections: true
|
|
eleventyAllowMissingExtension: true
|
|
---
|
|
ErrorDocument 404 /404.html
|
|
|
|
<FilesMatch "\.(ico|svg|avif|webp|jpg|jpeg|png|gif|woff2)$">
|
|
Header set Cache-Control "max-age=31536000, public"
|
|
</FilesMatch>
|
|
<FilesMatch "\.(css|js)$">
|
|
Header set Cache-Control "no-cache, public"
|
|
</FilesMatch>
|
|
|
|
RewriteEngine on
|
|
|
|
# Block bad bots
|
|
{% for bot in robots.htaccess -%}
|
|
RewriteCond %{HTTP_USER_AGENT} ({{ bot }}) [NC{% if not loop.last %},OR{% endif %}]
|
|
{% endfor -%}
|
|
RewriteRule .* https://nocommercialuse.org/ [L] |