如何将这个.htaccess从Apache转换为Nginx?

我需要将这个.htaccess转换为Nginx格式,如果可以的话,请指导我。

DirectoryIndex index.php FileETag none ServerSignature Off Options All -Indexes <IfModule mod_rewrite.c> RewriteEngine On RewriteRule ^([0-9a-zA-Z]{1,6})$ links/?to=$1 [L] RewriteRule ^([0-9]{1,9})/banner/(.*)$ links/?uid=$1&adt=2&url=$2 [L] RewriteRule ^([0-9]{1,9})/(.*)$ links/?uid=$1&adt=1&url=$2 [L] </IfModule> 

再次感谢…

尝试这个,

 rewrite ^/([0-9a-zA-Z]{1,6})$ /links/?to=$1 last; rewrite ^/([0-9]{1,9})/banner/(.*)$ /links/?uid=$1&adt=2&url=$2 last; rewrite ^/([0-9]{1,9})/(.*)$ /links/?uid=$1&adt=1&url=$2 last; 

资料来源: http : //www.anilcetin.com/convert-apache-htaccess-to-nginx/