Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-22 Thread Sean Allen
On Feb 20, 2008, at 3:45 PM, Ruslan Sivak wrote: Krist van Besien wrote: On Wed, Feb 20, 2008 at 6:20 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: So basically appache is not encoding the arguments when they're proxied. When it gets to index.html it just sees user=testing. How do I make

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-20 Thread Krist van Besien
On Feb 19, 2008 11:35 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: Logs: for somehostname.com/u/testing test 127.0.0.1 - - [19/Feb/2008:17:25:33 --0500] [somehostname.com/sid#7680e0][rid#a82fa0/initial] (2) init rewrite engine with requested uri /u/testing test 127.0.0.1 - -

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-20 Thread Ruslan Sivak
Krist van Besien wrote: On Feb 19, 2008 11:35 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: Logs: for somehostname.com/u/testing test 127.0.0.1 - - [19/Feb/2008:17:25:33 --0500] [somehostname.com/sid#7680e0][rid#a82fa0/initial] (2) init rewrite engine with requested uri /u/testing test

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-20 Thread Krist van Besien
On Wed, Feb 20, 2008 at 6:20 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: So basically appache is not encoding the arguments when they're proxied. When it gets to index.html it just sees user=testing. How do I make apache properly encode the arguments? Properly encoding the arguments is not

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-20 Thread Ruslan Sivak
Krist van Besien wrote: On Wed, Feb 20, 2008 at 6:20 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: So basically appache is not encoding the arguments when they're proxied. When it gets to index.html it just sees user=testing. How do I make apache properly encode the arguments?

[EMAIL PROTECTED] RewriteRule problem

2008-02-19 Thread Ruslan Sivak
I have the following rewrite rule RewriteRule ^/u/(.+)/*$ /index.html?user=$1 [P,NC] for some reason this rule is not working for things like this /u/Testing test /u/#1 Test etc. What am I missing? I though .+ would match everything? Russ

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-19 Thread Eric Covener
On Feb 19, 2008 3:37 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: I have the following rewrite rule RewriteRule ^/u/(.+)/*$ /index.html?user=$1 [P,NC] for some reason this rule is not working for things like this /u/Testing test /u/#1 Test etc. What am I missing? I though .+ would match

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-19 Thread Ruslan Sivak
Eric Covener wrote: On Feb 19, 2008 3:37 PM, Ruslan Sivak [EMAIL PROTECTED] wrote: I have the following rewrite rule RewriteRule ^/u/(.+)/*$ /index.html?user=$1 [P,NC] for some reason this rule is not working for things like this /u/Testing test /u/#1 Test etc. What am I missing? I

Re: [EMAIL PROTECTED] RewriteRule problem

2008-02-19 Thread Nils Jeppe
On Tue, 19 Feb 2008, Ruslan Sivak wrote: for somehostname.com/u/#1 test 127.0.0.1 - - [19/Feb/2008:17:32:41 --0500] [somehostname.com/sid#7680e0][rid#aa10c8/initial] (2) init rewrite engine with requested uri /u/#1 test 127.0.0.1 - - [19/Feb/2008:17:32:41 --0500]

[EMAIL PROTECTED] RewriteRule Problem

2007-07-18 Thread tina exner
i´ve got it ;-) @martijn thanks for your help. RewriteCond %{HTTP_USER_AGENT} .*nokia.* [NC,OR] [...] RewriteCond %{HTTP_USER_AGENT} .*safari.* [NC] RewriteRule ^/$ http://www.domain.de/XY2/ [R,L] RewriteCond %{HTTP_USER_AGENT} .*nokia.* [NC,OR] [...] RewriteCond

Re: [EMAIL PROTECTED] RewriteRule Problem

2007-07-17 Thread Martijn
On 7/17/07, tina exner [EMAIL PROTECTED] wrote: I have the below RewriteRules configured in my httpd.conf (Apache Version 2.0.54) But i never reach the site XY1, because: (rewrite.log)...explicitly forcing redirect with... I changed the Flags but it still doesn´t work. How do i have to configure