Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-22 Thread Hilco Wijbenga
On 22 August 2011 14:59, Jeroen Geilman wrote: > On 2011-08-22 23:55, Hilco Wijbenga wrote: >> You nailed it. All those Rewrite* options need to be in the virtual >> host. Then it works. >> >> This is surprising. I had assumed that anything outside of a virtual >> host was a global setting and the

Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-22 Thread Jeroen Geilman
On 2011-08-22 23:55, Hilco Wijbenga wrote: You nailed it. All those Rewrite* options need to be in the virtual host. Then it works. This is surprising. I had assumed that anything outside of a virtual host was a global setting and the virtual host settings overrode those global settings where a

Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-22 Thread Hilco Wijbenga
On 22 August 2011 14:20, Eric Covener wrote: > On Mon, Aug 22, 2011 at 4:50 PM, Hilco Wijbenga > wrote: >> Hi Eric, >> >> On 20 August 2011 04:28, Eric Covener wrote: Please note that I have set logging to maximum and a log file *is* created but it stays empty. So apparently the Rewrit

Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-22 Thread Hilco Wijbenga
On 22 August 2011 14:23, Björn Zettergren wrote: >> RewriteEngine is on and the ProxyPassMatch rule is firing. I've >> attached my full config. I've tried to simplify it but it's still 200+ >> lines. The important stuff is at the bottom. I would very much >> appreciate it if you could take a quick

Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-22 Thread Björn Zettergren
RewriteEngine is on and the ProxyPassMatch rule is firing. I've attached my full config. I've tried to simplify it but it's still 200+ lines. The important stuff is at the bottom. I would very much appreciate it if you could take a quick peek to tell me what I'm doing wrong. I have tried the conf

Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-22 Thread Hilco Wijbenga
Hi Eric, On 20 August 2011 04:28, Eric Covener wrote: >> Please note that I have set logging to maximum and a log file *is* >> created but it stays empty. So apparently the RewriteRule never fires. > > No "rewriteengine on" or the vhost handling the request isn't the one > with the RewriteRule?

Re: [users@httpd] My RewriteRule seems to be ignored

2011-08-20 Thread Eric Covener
> Please note that I have set logging to maximum and a log file *is* > created but it stays empty. So apparently the RewriteRule never fires. No "rewriteengine on" or the vhost handling the request isn't the one with the RewriteRule? ---

[users@httpd] My RewriteRule seems to be ignored

2011-08-19 Thread Hilco Wijbenga
Hi all, I have what boils down to RewriteRule ^/website$ http://localhost/website/ ProxyPassMatch ^/website/(.*)$ http://localhost:8000/website/$1 but when I try http://localhost/website (note the missing slash) it does not get rewritten to http://localhost/website/ (note the appended sl