1.) Apache Rule:
RewriteRule ^(.*)/(.*).htm$ /inner.php?Categories=$0&Title=$1 [L,QSA]
2.) After converting to nginx:
rewrite ^/(.*)/(.*).htm$ /inner.php?Categories=$0&Title=$1 break;
Question: When user access this page http://example.com/category.htm and tried to click inside the pages means it should be redirect into http://example.com/category/innerpagetitle.htm/
How do i achieve in nginx?