I am using the example from apache to rewrite a url with proxy:
RewriteRule ^widget/(.*)$ http://product.example.com/widget/$1 [P]
I want to set a absolute domain for this:
RewriteRule ^de.domain.com/widget/(.*)$ http://product.example.com/widget/$1 [P]
But then it doesn't works. Where is the problem?