Dreamhost共享主机上的.htaccess

我有mod_rewrite在我的本地机器上完美工作,但我在Dreamhost的共享服务器上得到一个redirect循环。

我想我错过了一些非常明显的事情。 任何想法,为什么这不会在共享服务器上工作?

我正在使用Linux / Apache / PHP 5.2与FastCGI

# Turn on URL rewriting RewriteEngine On RewriteBase / # Protect application files from being viewed RewriteRule ^(application) - [F,L] # Allow any other files or directories that exist to be displayed directly RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d # Rewrite all other URLs to index.php/ RewriteRule .* index.php/$0 [PT,L] 

对于有同样问题的人:closuresFastCGI解决了这个问题。