не получается перенести все правила с htaccess в nginx
RewriteRule ^adv/?$ /adv/index.php [L]
RewriteRule ^contacts/?$ /contacts/index.php [L]
RewriteRule ^about/?$ /about/index.php [L]
RewriteRule ^politics/?$ /archive.php?cat=politics [L]
RewriteRule ^economy/?$ /archive.php?cat=economy [L]
RewriteRule ^society/?$ /archive.php?cat=society [L]
RewriteRule ^world/?$ /archive.php?cat=world [L]
RewriteRule ^culture/?$ /archive.php?cat=culture [L]
RewriteRule ^incident/?$ /archive.php?cat=incident [L]
RewriteRule ^sport/?$ /archive.php?cat=sport [L]
RewriteRule ^technology/?$ /archive.php?cat=technology [L]
RewriteRule ^interesting/?$ /archive.php?cat=interesting [L]
пробую такой вариант
rewrite ^/world/?$ /archive.php?cat=world break;
ссылка example.com/world/ начинает открываться, но ссылки на странице world отдаются 404 подскажите как сделать правильно?