I have a problem with URL not getting resolved properly and I'm sure it is something related to Apache but can't figure it out properly. I have just installed the Zope MessageBoard product and when using a full URL such as:- http://mysite.org:8080/myzopesite/MB I can add a new msg OK - the URL used is:- http://mysite.org:8080/myzopesite/MB/addMessageForm But when using the URL http://myzopesite.org, the URL displayed on the icon is:- http://myzopesite.org:8080/MB/addMessageForm This sounds like a very basic error but I can't figure out exactly what should be changed. Ideally, I would prefer to be able to access the message board just with http://myzopesite.org/MB and whilst the initial message board screen comes up none of the icons resolve to the correct URL. Can anyone suggest what I have ommitted? This is the RewriteRule in Apache:- RewriteRule ^/(.*) http://www.myzopesite.org:8080/VirtualHostBase/http/www.myzopesite.org/myzop... [P,L] Anything wrong with this? -- John
Hi, Am Sa, den 02.10.2004 schrieb John Poltorak um 21:54:
I have a problem with URL not getting resolved properly and I'm sure it is something related to Apache but can't figure it out properly.
I have just installed the Zope MessageBoard product and when using a full URL such as:-
http://mysite.org:8080/myzopesite/MB
I can add a new msg OK - the URL used is:-
http://mysite.org:8080/myzopesite/MB/addMessageForm
But when using the URL http://myzopesite.org, the URL displayed on the icon is:-
http://myzopesite.org:8080/MB/addMessageForm
This sounds like a very basic error but I can't figure out exactly what should be changed.
Ideally, I would prefer to be able to access the message board just with
and whilst the initial message board screen comes up none of the icons resolve to the correct URL.
Can anyone suggest what I have ommitted?
This is the RewriteRule in Apache:-
RewriteRule ^/(.*) http://www.myzopesite.org:8080/VirtualHostBase/http/www.myzopesite.org/myzop... [P,L]
You are apparently missing the port number in the VirtualHostBase. Try: RewriteRule ^/(.*) http://www.myzopesite.org:8080/VirtualHostBase/http/www.myzopesite.org:80/my... [P,L] Regards Tino
On Sat, Oct 02, 2004 at 10:19:19PM +0200, Tino Wildenhain wrote:
Can anyone suggest what I have ommitted?
This is the RewriteRule in Apache:-
RewriteRule ^/(.*) http://www.myzopesite.org:8080/VirtualHostBase/http/www.myzopesite.org/myzop... [P,L]
You are apparently missing the port number in the VirtualHostBase. Try: RewriteRule ^/(.*) http://www.myzopesite.org:8080/VirtualHostBase/http/www.myzopesite.org:80/my... [P,L]
Many thanks for that - it worked! I didn't think it would since everything else had been working OK.
Regards Tino
-- John
participants (2)
-
John Poltorak -
Tino Wildenhain