Nginx rewrite

Tudnátok segíteni , hogy az alábbi Apache rewrite , hogyan szól az nginx számára?

RewriteEngine on
RewriteRule ^category/(.+)$ /index.php?cat_name=$1 [NC,L]
RewriteRule ^job/(.+)$ /index.php?post_permalink=1&post_id=$1 [NC,L]
RewriteRule ^profile/(.+)$ /index.php?show_emp=$1 [NC,L]
RewriteCond %{QUERY_STRING} .+
RewriteRule ^page([0-9]+) /index.php?%{QUERY_STRING}&job_page_link=$1 [NC,L]
RewriteRule ^page([0-9]+) /index.php?job_page_link=$1 [NC,L]

Hozzászólások