Get Social & Collaborate!
Tags
« The man that should have used Lotus Connections | Main | Form Based Authentication for WebSphere Portal »
Friday
Jul022010

Setting IHS Default to be Connections Homepage

  1. With a text editor, open the httpd.conf file from the /opt/IBM/HTTPServer/conf directory.
  2. Uncomment the following line if it is commented out:
    LoadModule rewrite_module modules/mod_rewrite.so
  3. Add a rewrite rule for HTTP to the file:
    RewriteEngine on
    RewriteRule ^/$ http://<host_name>/<feature> [R,L]

    Where <host_name> is the URL that users will access, and <feature> is the context path of the default feature, including Activities, Blogs, Communities, Dogear, Home page, or Profiles. For example:

    RewriteEngine on
    RewriteRule ^/$ http://connections.acme.com/homepage [R,L]
  4. Add a rewrite rule for HTTPS and place it within the SSL VirtualHost section of the httpd.conf file. For more information, see the Configuring the IBM HTTP Server for SSL topic.
    RewriteEngine on
    RewriteRule ^/$ https://<host_name>/<feature> [R,L]

    Where <host_name> is the URL that users will access, and <feature> is the context path of the default feature.

  5. Save and close the file.
  6. Restart the IBM HTTP Server

Taken from: http://tinyurl.com/3xwge74



PrintView Printer Friendly Version

EmailEmail Article to Friend

Reader Comments (1)

Cheers! I wanted to do this for a while but never figured out how

July 3, 2010 | Unregistered CommenterMartin Rolph

PostPost a New Comment

Enter your information below to add a new comment.
Author Email (optional):
Author URL (optional):
Post:
 
All HTML will be escaped. Hyperlinks will be created for URLs automatically.