</highlight>
</example>
+ <note><title>Files with no extension</title>
+ <p>Files with no extension (such as <code>Makefile</code>) cannot
+ be matched by <module>mod_mime</module>'s extension-based directives.
+ To set the content type or charset for such files, use a
+ <directive type="section" module="core">Files</directive> or
+ <directive type="section" module="core">FilesMatch</directive>
+ section instead:</p>
+
+ <highlight language="config">
+# For a specific file:
+<Files "Makefile">
+ ForceType text/plain
+ AddDefaultCharset UTF-8
+</Files>
+
+# For all files with no extension:
+<FilesMatch "^[^.]+$">
+ ForceType text/plain
+ AddDefaultCharset UTF-8
+ AddDefaultCharset UTF-8
+</FilesMatch>
+ </highlight>
+ </note>
+
</section>
<section id="contentencoding"><title>Content encoding</title>