yazuk
yazuk

Reputation: 107

How to rewrite .htaccess with nginx

I have apache with ngnix as a reverse proxy. I have

RewriteRule ^thumb/(.*)x(.*)/r/(.*) thumb.php?w=$1&h=$2&src=$3
RewriteRule ^medias/(.*) files.php?file=$1

How to rewrite theme in nginx ? Regards

Upvotes: 1

Views: 39

Answers (1)

Richard Smith
Richard Smith

Reputation: 49692

The essential difference between Apache and nginx URIs, is that all nginx URIs begin with a leading /.

You should try:

rewrite ^/thumb/(.*)x(.*)/r/(.*) /thumb.php?w=$1&h=$2&src=$3? last;
rewrite ^/medias/(.*) /files.php?file=$1? last;

See this document for more.

Upvotes: 1

Related Questions