RE: [EMAIL PROTECTED] suEXEC and RewriteRule

2007-02-01 Thread Chirouze Olivier
with it to change the page title. Olivier Olivier CHIROUZE I0 Infrastructure Volvo Information Technology -Original Message- From: Florian Effenberger [mailto:[EMAIL PROTECTED] Sent: 31 January 2007 17:06 To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] suEXEC and RewriteRule

Re: [EMAIL PROTECTED] suEXEC and RewriteRule

2007-02-01 Thread Florian Effenberger
Hi Olivier, Hmm... mod_rewrite only rewrites the URL... It doens't change the content. I guess you use the dynamically generated listing? So you should probably play with the directive that allows you to list directories. I don't remember which one it is and don't use it myself. But I guess you

RE: [EMAIL PROTECTED] suEXEC and RewriteRule

2007-01-31 Thread Chirouze Olivier
I'm not exactly sure RewriteRule accepts all sorts of regex, such as ?. But if so, I guess the following should do: RewriteRule ^/projects/design/(.?) http://www.mydoma.in/~michael/$1 [P] And below: RewriteRule ^/projects/design/ - [F] Or even: RewriteRule .* - [F] That would make a call

Re: [EMAIL PROTECTED] suEXEC and RewriteRule

2007-01-31 Thread Florian Effenberger
Hi Olivier, I'm not exactly sure RewriteRule accepts all sorts of regex, such as ?. But if so, I guess the following should do: RewriteRule ^/projects/design/(.?) http://www.mydoma.in/~michael/$1 [P] And below: RewriteRule ^/projects/design/ - [F] Or even: RewriteRule .* - [F] That