Re: [users@httpd] RewriteRule overbinding in 2.2

2019-04-30 Thread Aaron Macks2
Apparently I needed to just tell it to the bear. In looking to verify rewritelog configs I found that the rewrite I was changing was not the one being hit, wrong vHost A Aaron Macks Systems Architect On Apr 30, 2019, at 11:14 AM, Eric Covener

Re: [users@httpd] RewriteRule overbinding in 2.2

2019-04-30 Thread Eric Covener
On Tue, Apr 30, 2019 at 11:05 AM Aaron Macks2 wrote: > > I have a problem with a RewriteRule where it appears to be over-binding in > the REGEX: > > RewriteRule ([0-9]{4,6}(?:-[0-9]{1,2})?\.jpg)$ > /cgi-bin/logo-image.pl?image=$1 [L,PT] > > What it should do is bind a 4-6 digit number,

[users@httpd] RewriteRule overbinding in 2.2

2019-04-30 Thread Aaron Macks2
I have a problem with a RewriteRule where it appears to be over-binding in the REGEX: RewriteRule ([0-9]{4,6}(?:-[0-9]{1,2})?\.jpg)$ /cgi-bin/logo-image.pl?image=$1 [L,PT] What it should do is bind a 4-6 digit number, followed by an optional - and a 1-2 digit number, and finally .jpg, at