为什么我的htaccess文件阻止访问我的MP3文件?

我的Zend Framework应用程序有一个公共目录,其中包含一个htaccess文件。 如果在公共目录中找不到该文件,它将通过应用程序路由请求。 我的公共目录中有一个MP3文件,但是htaccess文件是通过应用程序路由请求的!

你看到我的htaccess文件有什么问题吗?

AddDefaultCharset utf-8 RewriteEngine on RewriteRule ^Resources/.* - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule !\.(js|ico|gif|jpg|png|css|htm|html|php|pdf|doc|txt|swf|xml|mp3)$ /index.php [NC] 

原来,htaccess的东西也embedded到Apacheconfiguration文件。 我的同事说这是一个performance助推器。

htacess文件对Web服务器是否可读?