RewriteCond transformation again

Hello,

I inherited this piece of htaccess:

> RewriteEngine On > RewriteBase / > > RewriteCond %{REQUEST_FILENAME} !-d > RewriteCond %{REQUEST_FILENAME} !-f > RewriteRule ^(.*)$ index.php [QSA,L] > >

Any ideas of how to convert this to nginx-friendly configuration?

Thank you,
Ruslan D.

On 4/13/11 7:44 PM, “Ruslan D.” [email protected] wrote:

RewriteRule ^(.*)$ index.php [QSA,L]

http://wiki.nginx.org/HttpCoreModule#try_files


Brian A.