Please help me in conversion the .htaccess rules to Nginx
Options +FollowSymLinks
RewriteEngine on
RewriteRule ^show\.php/(.*)$ show2.php?img=$1 [L]
RewriteRule ^out\.php/([a-z]{1})(.*)$ out2.php?$1=$2&%{QUERY_STRING} [L]
RewriteRule ^view\.php/(.*)$ view2.php?img=$1 [L]
Thanks :)
after reading the documentation for nearly 1hr I found it by myself :)
rewrite ^/view.php/(.*)$ /view.php?img=$1 last;