How you set the MIME type depends on the type of web server you are using. This chapter explains how to set the MIME type for Internet Information Server (IIS) and Apache web servers. For other servers, refer to the web server's documentation.
![]() | Tip |
|---|---|
The easiest way to see if the MIME type is correct is to publish a Klip and try clicking on its link. If you are prompted to load an application, you need to set the MIME type. | |
To configure the MIME type on IIS version 6, do the following:
Open IIS Manager.
Right-click on the local computer, Web site or Web site directory for which you want to add the MIME type, and select .
Select the button.
Click on
In the box, enter klip.
For , enter application/klipfolio.
Click .
For setting the MIME type on IIS v5.0, follow these steps:
Right-click on and select .
Select the tab.
Under , go to the File Types tab and select New Type.
In Extension field, enter .klip, and application/klipfolio for Content Type.
Hit OK.
To set the MIME type on an Apache web server, do the following:
Locate the file mime.types (usually located in /etc/mime.types).
Open the file and add the following line to it:
application/klipfolio klip
Save and close the file.
![]() | Tip |
|---|---|
If you do not have access to /etc/mime.types, you can use the AddType directive. To do so, navigate to your server's document root, and create a file called .htaccess if it does not already exist. Then add this line to the file: AddType application/klipfolio klip and save the file. | |
![]() | Note |
|---|---|
Steps to configure the MIME type may differ depending on the type and version of the server you are using. Refer to its documentation for details. | |