RewriteCond в Nginx

Igor Sysoev is at rambler-co.ru
Tue Aug 12 18:07:23 MSD 2008


On Tue, Aug 12, 2008 at 04:28:50PM +0300, Serg Senko wrote:

> Пытаюсь сделать такой rewrite в NGINX и уйти на половине серверов с Apache.
> Кто то может с этим помочь ?
> 
> RewriteCond %{REQUEST_URI} !^.*\..{2,4}$ [NC]
> RewriteRule ^(.*) index.php [L,NC]

     location / {
         rewrite  ^ /index.php;
     }

     location = /index.php {
         ...
     }

     location ~ \..{2,4}$ {
         ...
     }


-- 
Игорь Сысоев
http://sysoev.ru





More information about the nginx-ru mailing list