So, here's a situtation I run into every now and then. You want to redirect users from the default apache page to the another page like the Groupwise webaccess which is at /gw/webacc Typically, a simple redirect works fine, but what if your internal dns and external dns are different. You don't want to hard code the redirect becuase internal users would get redirect to the outside. So here's a niffty piece of code that works for apache on Linux or netware. First, make sure mod_rewrite is loaded. In netware you add this to your conf: LoadModule rewrite_module modules/rewrite.nlm then add this for the actual redirect ##### Begin Novell GroupWise WebAccess configuration ##### include "sys:Apache2/conf/GWApache2.conf" ##### End Novell GroupWise WebAccess configuration ##### BrowserMatch "MSIE" nokeepalive downgrade-1.0 force-response-1.0 RewriteEngine On RewriteCond %{REQUEST_URI} !^/gw/* RewriteCond %{REQUEST_URI} !^/nps/* RewriteCond %{SERVER_PORT} ^443$ RewriteRule ^/(.*) https://%{SERVER_NAME}/gw/webacc [L,R] RewriteEngine On #RewriteCond %{SERVER_PORT} ^80$ RewriteRule ^/(.*) https://%{SERVER_NAME}/gw/webacc [L,R] Happy redirection!