ПРОЕКТЫ 


  АРХИВ 


Apache-Talk @lexa.ru 

Inet-Admins @info.east.ru 

Filmscanners @halftone.co.uk 

Security-alerts @yandex-team.ru 

nginx-ru @sysoev.ru 


  СТАТЬИ 


  ПЕРСОНАЛЬНОЕ 


  ПРОГРАММЫ 



ПИШИТЕ
ПИСЬМА












     АРХИВ :: nginx-ru
Nginx-ru mailing list archive (nginx-ru@sysoev.ru)

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

location + rewrite


  • To: nginx-ru@xxxxxxxxx
  • Subject: location + rewrite
  • From: "Melhior" <nginx-forum@xxxxxxxx>
  • Date: Wed, 23 Mar 2011 07:24:20 -0400
  • Dkim-signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mickey.jlkhosting.com; s=x; h=Date:Sender:From:Message-ID:Content-Transfer-Encoding:Content-Type:Subject:To; bh=B4O8jUgJxJNoLxuFGwqYBfAjXnVYsW4HPecWr5Qx470=; b=vU9Gh08vfi9pcD3GY4Nl0toCZj6RFht4fuuvG9+LMTTxZsJSpXNP5jaTd9JhEPOzj9f8DQmPvj7jJhOpia5ctnT/38RWZOWHzCSKILlKjLLnCISJBVi/0/y33YFV+tyQ;

server {
                listen       123.123.123.123:80;
                server_name  www.example1.com example1.com;

location  / {
         proxy_pass         http://127.0.0.1:80/;
}

location ~* \.(gif|jpg|bmp|png)$ {
        rewrite ^/(.*)$  http://files.example1.com/$1 permanent; break;
}



server {
                listen       123.123.123.123:80;
                server_name  www.example2.com example2.com;

location  / {
         proxy_pass         http://127.0.0.1:80/;
}

location ~* \.(gif|jpg|bmp|png)$ {
        rewrite ^/(.*)$  http://files.example2.com/$1 permanent; break;
}


При попытке сделать запрос
http://www.example1.com/abcd.gif   меня правильно
перекидывает на http://files.example1.com/abcd.gif 

При попытке сделать запрос
http://www.example2.com/abcd.gif  меня снова
перекидывает на http://www.example1.com/abcd.gif 

В чем ошибка?

Posted at Nginx Forum: 
http://forum.nginx.org/read.php?21,185100,185100#msg-185100


_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru


 




Copyright © Lexa Software, 1996-2009.