Hi,
I want to use Twip on my nginx site,but the rewrite rules only for Apache.Can you help me to convert it to Nginx rules?Thanks
[code]
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
</IfModule>
[/code]