我在本地和开发服务器中使用以下.htaccess文件,但是当我将此.htaccess文件部署到我的godaddy prod服务器时,我收到500错误 . 但是,如果我浏览到http://example.com/bootstrap.php,我得到的资源不可用于/

我的目录结构是这样的:

+ folder
+--folder of errord domain

# this funnels every request through the bootstrap unless the request includes a specific file or document
<IfModule mod_rewrite.c>
  RewriteEngine on
  RewriteBase /
  RewriteCond %{REQUEST_URI} !(js|css|errors|images|fonts|media)
  RewriteRule !.(js|css|ico|gif|jpg|png|swf|ttf|eot|svg|woff|GIF|pdf)$ bootstrap.php
  RewriteCond %{REQUEST_FILENAME} -s [OR]
  RewriteCond %{REQUEST_FILENAME} -l [OR]
  RewriteCond %{REQUEST_FILENAME} -d
  RewriteRule ^.*$ - [NC,L]
  RewriteRule ^.*$ bootstrap.php [NC,L]
</IfModule>