Hi I am relatively new to working with servers. I have successfully installed apache2, and have loaded mobile web content onto it (xhtml-mp pages) using filezilla. (My OS is Ubuntu: Natty Narwhal) I would like to know where do I specify the correct mime types for mobile content in apache? I am using xhtml-mp for developement. A 'lay man's terms' kind of response would be most welcome. Thanks!
You would just need to add a line like this to your apache configuration somewhere under /etc/apache2/: AddType application/vnd.wap.xhtml+xml .xhtml The other option is to add a .htaccess file in the root of your website with the same content: AddType application/vnd.wap.xhtml+xml .xhtml