Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a site that needs to use mod_rewrite to direct traffic to www.example.com to 123.45.67.89, port 8080, through an internal proxy. This is the rewrite rule I'm using:

RewriteEngine On
RewriteRule ^(.*)$ http://123.45.67.89:8080/$1  [P]

When I visit www.example.com/myurl, I receive the following error with a 404:

The requested URL /myurl was not found on this server.

This redirect works on our dev server, but not on production. Is there an apache setting that I need to enable in order to make this work?

Thanks

share|improve this question

1 Answer

up vote 3 down vote accepted

You need to have mod_proxy enabled to use the P flag.

share|improve this answer
1  
Thanks Gumbo, this was the correct solution, although I'll add for anyone else viewing the thread in my particular case I needed to enable mod_proxy_http as well. – Travis Jul 23 '09 at 19:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.