I was finally able to sort this myself by changing a rewrite to a proxypass directive, for anyone who has followed my newbie Apache rewrite adventure, the final conf looks like this. Under the harsh glare and cold light of hindsight, it looks ridiculously logical and straightforward.
Hope this helps someone else. Special thanks to Dan Thomas. ------------------- # DNS/WINS/HOSTS entries resolving to ip address in the format of "xxx.xxx.xxx.xxx vltrack itweb" # Turn ReWriteLogLevel 9 to debug # Have Apache listen on Port 80 on all IP Addresses on the box Listen 80 # Enable named Virtual Hosts for my default NameVirtualHost itweb:80 # PLONE - ITWEB <VirtualHost itweb:80> ServerName itweb ProxyPreserveHost On ProxyPass / http://itweb:9000/ ProxyPassReverse / http://itweb:9000/ ReWriteLog logs/rewrite_itweb.log ReWriteLogLevel 0 </VirtualHost> # ZENTRACK - PGP Under APache <VirtualHost itweb:80> ServerName vltrack RewriteEngine On ReWriteLog logs/rewrite_vltrack.log ReWriteLogLevel 0 DocumentRoot "d:/www/vltrack/www/" RewriteRule ^vltrack/(.*) http://vltrack:80/VirtualHostBase/http/vltrack:80/VirtualHostRoot/%{SERVER_N AME}$1 [L,R] </VirtualHost> -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Wednesday, December 28, 2005 7:58 AM To: Steven Williams Cc: Subject: Re: [Setup] Missing Center section of home page after apache rewrite Strange, for what object do you get the 404? What do you find about this 404 in your access (or error log) of apache? Wouter > Plone 2.1.1 > Zope 2.74 > WIN2000 > Apache 2.0.55 > > I am consistently missing the middle section of my Plone site's home > (front-page) page when I do a URL rewrite through Apache. It renders > the correct left and right slots, but the middle section content is > missing with a 404 error. If I use an explicit port number, its fine. > > Anyone with any ideas? > > Thanks and Happy Holidays! > > Steven P. Williams > (212) 907-1663 > -------------------------------------------------- > This transmission contains information intended to be confidential and > solely for the use of Value Line, Inc., and those persons or entities > to whom it is directed. It is not to be reproduced, retransmitted, or > in any other manner distributed. If you receive this message in error, > please immediately delete it and all copies of it from your system, > destroy any hard copies of it and notify the sender. > > > > -------------------------------------------------- > This transmission contains information intended to be confidential and > solely for the use of Value Line, Inc., and those persons or entities > to whom it is directed. It is not to be reproduced, retransmitted, or > in any other manner distributed. If you receive this message in error, > please immediately delete it and all copies of it from your system, > destroy any hard copies of it and notify the sender. > > > _______________________________________________ > Setup mailing list > [email protected] http://lists.plone.org/mailman/listinfo/setup > > _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup -------------------------------------------------- This transmission contains information intended to be confidential and solely for the use of Value Line, Inc., and those persons or entities to whom it is directed. It is not to be reproduced, retransmitted, or in any other manner distributed. If you receive this message in error, please immediately delete it and all copies of it from your system, destroy any hard copies of it and notify the sender. _______________________________________________ Setup mailing list [email protected] http://lists.plone.org/mailman/listinfo/setup
