como converter este .htaccess do Apache para o Nginx?

1

Eu preciso converter este .htaccess para o formato Nginx, por favor me guie se puder.

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>

obrigado novamente ...

    
por user74344 30.07.2011 / 00:07

1 resposta

1

Tente isso,

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;

Fonte: link

    
por 30.07.2011 / 02:07