I have a file (*.lwxl) that I would like for users to download a file, but the mime-type is text/html, and I would like to change it to application. Is there any way to do this?
|
|
If you have access to your Apache configuration (if you don't want to write a PHP script that will send the headers and the file content), maybe the AddType directive can help you :
The given example looks like this :
|
|||
|
|
|
Add the appropriate mime type to the
|
||||
|
|
|
You will need to set the mime type using a scripting language. Here is how to do it in PHP. |
|||
|
|
You can't do that from PHP - you should do it through your Apache (or IIS or...) config. For Apache you can edit your
|
|||
|
Hi is that apache? http://httpd.apache.org/docs/2.2/mod/mod%5Fmime.html check AddType Directive |
|||
|
|
