Hi,
Could you help me to resolve my problem
I want to do redirection between apache and Tomcat, with a virtual host wich has this config :
in /etc/apache2/sites-enabled/geonetwork
<VirtualHost 192.168.1.52:80> // mettre ici l'IP du serveur Geonetowrk
ServerAdmin admin@anonymised.com
ServerName vpclim02
DocumentRoot /var/www/
<Directory />
#Options Indexes FollowSymLinks MultiViews
Options None
AllowOverride None
Order deny,allow
allow from all
RedirectMatch permanent ^.*/intermap$ http://192.168.1.52:8080/geonetwork
RedirectMatch permanent ^.*/geonetwork$ http://192.168.1.52:8080/geonetwork
</Directory>
</VirtualHost>
But when I enter http://vpclim02/goenetwork in internet browser, the url change to http://192.168.1.52:8080/geonetwork
but nothing appears,
standard configuration with geonetwork files in /usr/local/geonetwork
Thanks by advance,
Regis