How can I simplify the Scalix Web Access URL for my users?

From Scalix Wiki
Jump to: navigation, search

Scalix Wiki -> FAQ -> How can I simplify the Scalix Web Access URL for my users?

1) Modify the file /var/www/html/index.html to enable the redirection as follows:

  <html>
  <head>
  <title>Redirecting to Scalix Web Access - XYZ Corporation </title>
  <meta http-equiv=refresh content="0; url=https://scalixserver.domain.com:8443/webmail/">
  </head>
  </body>
  </html>

2) Users can now enter http://scalixserver.domain.com and automatically be redirected to https://scalixserver.domain.com:8443/webmail.



Another option is to:


1) create another directory under /var/www/html and place an index.html file there.

  #cd /var/www/html
  #mkdir web
  #vi index.html (...then add the same content)


  <html>
  <head>
  <title>Redirecting to Scalix Web Access - XYZ Corporation </title>
  <meta http-equiv=refresh content="0; url=https://scalixserver.domain.com:8443/webmail/">
  </head>
  </body>
  </html>

2) Users can now enter http://scalixserver.domain.com/web and automatically be redirected to https://scalixserver.domain.com:8443/webmail.

Note - after making the changes, make sure you restart the Apache WEB server.

  #service httpd restart