Operating System - HP-UX
1830895 Members
2098 Online
110017 Solutions
New Discussion

Redirect to another server with apache 2.0 on HP-UX

 

Redirect to another server with apache 2.0 on HP-UX

Good day,

I'm trying to have automatique redirect to another apache server.

I wrote the following rules in httpd.conf but that does not . Could someone explain why ? I am very new to Rewrite rules in apache.


ServerName local.my.domain.com
DocumentRoot /opt/apache/portail/htdocs
DirectoryIndex index.html index.shtml
RewriteEngine on
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^/(.*)$ http://target.my.domain.com$1 [L,R]
RewriteLog "/opt/apache/portail/logs/rewrite.log"
RewriteLogLevel 4


Thanks for you kind help