On 12/07/10 11:10, ShivaS wrote:
> RewriteCond %{REQUEST_URI} !(.*)file.php$
> RewriteRule ^/file(.*)$ http://dyn.domain.com:8080/file.php$1 [P,L]
>
location /file {
rewrite ^/file(.*)$ /file.php$1;
}
location = /file.php {
proxy_pass http://dyn.domain.com:8080;
}
--
Anton Yuzhaninov