On Thu, Feb 28, 2008 at 10:35 PM, Joshua Slive <[EMAIL PROTECTED]> wrote:
>
> On Thu, Feb 28, 2008 at 12:51 AM, J. Peng <[EMAIL PROTECTED]> wrote:
> > Can we do a rewrite based on Accept-Encoding request header?
> > If the request header includes "Accept-Encoding: gzip, deflate", we
> > rewrite it to pathA.
> > Otherwise rewrite it to pathB.
>
> Yes. The docs are here:
> http://httpd.apache.org/docs/2.2/rewrite/
>
> Give it a try and come back with your best guess and a specific
> problem description if you can't figure it out.
>
Thanks for the document.
I have installed httpd-2.2.8 and set the rewrite rules as:
<Location /test2>
RewriteEngine On
RewriteCond %{HTTP:Accept-Encoding} gzip [OR]
RewriteCond %{HTTP:Accept-Encoding} deflate
# RewriteRule ^/test2/(.*) /test/$1 [PT,L]
RewriteRule ^/test2/(.*) /test/$1 [R,L]
</Location>
It doesn't work. do you know why?
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
" from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]