Difference between revisions of "MIME Types"

From HE FAQ
Jump to: navigation, search
m (How do I add a MIME type?)
Line 5: Line 5:
  
 
The standard set of MIME types is defined in the file /usr/local/etc/httpd/conf/mime.types. However, you aren't limited to the types defined there. MIME types may also be added through the use of the AddType directive in .htaccess files.
 
The standard set of MIME types is defined in the file /usr/local/etc/httpd/conf/mime.types. However, you aren't limited to the types defined there. MIME types may also be added through the use of the AddType directive in .htaccess files.
 
  
 
== How do I add a MIME type? ==
 
== How do I add a MIME type? ==
Line 18: Line 17:
 
<pre>AddType application/x-httpd-php .shtml</pre>
 
<pre>AddType application/x-httpd-php .shtml</pre>
  
== How do I make it so that people cannot see my directories from the web? ==
+
== How do I make it so that clicking on a file (e.g. a program script) will cause it to be downloaded rather than run? ==
 
+
You can either upload an index.html file to the directory, or add the following to your .htaccess file:
+
 
+
Options -Indexes
+
 
+
== How can I block people from certain IP Address so they can't access my site? ==
+
 
+
You can add the following to the .htaccess file in your public_html directory:
+
 
+
<pre>order deny,allow
+
deny from 192.0.2.123</pre>
+
 
+
''(change the ip address to the offending ip)''
+
  
This will block them from seeing not only your main pages, but all pages in all subdirectories. If you wish to block them from seeing only one, or a small set of, subdirectories, place the above code in the .htaccess file of the highest subdirectory that you want blocked.
+
Place an .htaccess file in the same directory as the script and include following line, where .fileextension is the extension of the file you want to be downloaded:
 +
<pre>AddType application/octet-stream .fileextension</pre>
  
 
[[Category:Webhosting]]
 
[[Category:Webhosting]]

Revision as of 15:11, 6 January 2012

This information only pertains to Hurricane Electric's Shared Web Hosting package. There may be different information in our other categories.

What are MIME types and how does the server use them?

MIME types are a standard way of specifying the type of a document. A web server uses MIME types to tell browsers what type of document the server is sending. For files, the server determines the MIME type by the file's extension (the file extension is the last part of file name, such as .html, or .gif).

The standard set of MIME types is defined in the file /usr/local/etc/httpd/conf/mime.types. However, you aren't limited to the types defined there. MIME types may also be added through the use of the AddType directive in .htaccess files.

How do I add a MIME type?

A MIME type can be added by creating a file called .htaccess in the directory containing the document you want to set the MIME type for. The file should contain a line in the following format:

AddType mimetype ext

Where mimetype is a MIME type like application/futuresplash and ext is a file extension like spl

Example:

AddType application/x-httpd-php .shtml

How do I make it so that clicking on a file (e.g. a program script) will cause it to be downloaded rather than run?

Place an .htaccess file in the same directory as the script and include following line, where .fileextension is the extension of the file you want to be downloaded:

AddType application/octet-stream .fileextension