How do I add the following:
AddType audio/aac .aac
AddType audio/mp4 .mp4 .m4a
AddType audio/mpeg .mp1 .mp2 .mp3 .mpg .mpeg
AddType audio/ogg .oga .ogg
AddType audio/wav .wav
AddType audio/webm .webm
to existing htaccess file below?
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
The purpose is to allow HTML5 jQuery Audio Player to work on all browsers. Right now the audio player only works in IE browser. I just can't figure out how to place it and I haven't a clue about correct syntax. If you can place it correctly I can load it into the correct place via FTP. Your help will be greatly appreciated.