Get Social & Collaborate!
Tags

Entries in connections websphere (1)

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