I need to add some mime types to one of our linux servers. For instance, 3gp files are getting processed as application/octet-stream when they should be video/3gpp.
I have added "video/3gpp 3gpp 3gp" in /etc/mime.types for 3gpp files but they still dont work. Is there anywhere in Apache I need to add the correct mime types?
phranque
11:36 am on Jul 26, 2007 (gmt 0)
you could try adding the following to your .htaccess file:
AddType video/3gpp 3gpp 3gp
Lastwords
12:12 pm on Jul 26, 2007 (gmt 0)
I've done this and it still doesnt work, any other ideas?