Is there a way to make ErrorDocument NOT rewrite the URL? This is my setup:
Rewri*gine on
RewriteRule ^/string$ string/ [R]
RewriteRule ^/string(.+) http://www.veryComputer.com/$1 [P]
What happens right now:
http://www.veryComputer.com/$UNKNOWN -> http://www.veryComputer.com/
http://www.veryComputer.com/$UNKNOWN -> http://www.veryComputer.com/
I do want the otherserver.com's 404, but I don't want it to rewrite the URL.
PS: Both the 'somesite.com's config, as well as the 'otherserver.com's
config have ErrorDocument's defined.