Nginx-ru mailing list archive (nginx-ru@sysoev.ru)
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Редирект 301 по условию
 
 
On Tue, Feb 09, 2010 at 04:46:48AM -0500, burbuil wrote:
> Доброго времени суток.
> Не могу сочинить правило для решения следующей задачи:
> нужно редиректить url вида
> /catalog/index.php в /catalog/ с кодом 301
> но не трогать url вида /catalog/index.php?SECTION1_ID=90
> Т.е. надо делать 301-редирект, только если на конце index.php СТРОГО без 
> параметров
   location = /catalog/index.php {
       if ($args = '') {
           rewrite  ^   /catalog/  permanent;
       }
       fastcgi ...
   }
-- 
Игорь Сысоев
http://sysoev.ru
_______________________________________________
nginx-ru mailing list
nginx-ru@xxxxxxxxx
http://nginx.org/mailman/listinfo/nginx-ru
 
 |