Re: httpd rewrite and REQUEST_URI value

2018-06-30 Thread Scott Vanderbilt
On 6/24/2018 10:25 PM, Ve Telko wrote: If you or your framework uses REQUEST_URI you don't need request rewrite feature. Using REQUEST_URI and request rewrite feature are two oposite solutions for the same problem. To mimic nginx's try_files do something like this: location match "/hello/.*" {

Re: httpd rewrite and REQUEST_URI value

2018-06-24 Thread Ve Telko
Hi Scott. If you or your framework uses REQUEST_URI you don't need request rewrite feature. Using REQUEST_URI and request rewrite feature are two oposite solutions for the same problem. To mimic nginx's try_files do something like this: location match "/hello/.*" { root

httpd rewrite and REQUEST_URI value

2018-06-23 Thread Scott Vanderbilt
I was very eager to implement the new rewrite functionality in httpd. However, I've run into an issue, and I am uncertain whether the new behavior is CGI-compliant or not. The app I am attempting to convert to httpd is currently built on nginx, and the rewrite functionality it offers