18 Dec
2003
18 Dec
'03
5:02 p.m.
Rajeev Sharma said:
Hello Everybody,
I am trying to configure zope with apache and using the following way. After adding VHM to the zope directory added Following lines in httpd.conf of apache
<VirtualHost *> ServerName www.example.com RewriteEngine On RewriteRule ^/(.*)http://Ip_of_the_server:8080/VirtualHostBase/http/www.example.com:80/ Name_of _the_zopedirectory/VirtualHostRoot/$1 [L,P] </VirtualHost>
But it is not working.
You're missing a space. Try: RewriteRule ^/(.*) http://IP_ADDR:8080/VirtualHostBase... --space here---^^^ HTH, Dylan