I have the following apache rewrite rule:
RewriteEngine On
RewriteRule ^id/([^/\.]+)$ item.php?id=$1 [L]
and I need to be able to use it with Nginx. It is meant to so that someone can go to http://mysite.com/id/10 and instead of having to be go http://mysite.com/item.php?id=10. Can anyone help me convert it?
Thanks in advance!