Thursday 2 January 2014

OHS HTTPD.conf RewriteRule to point DNS/HOSTNAME Straight to Space

Quick steps

  • edit httpd.conf (/u01/app/oracle/product/fmw/Oracle_WT1/ohs/conf)
  • add line at bottom
<VirtualHost *:80>
ServerName <$CUSTOMDNS$>
ServerAlias <$CUSTOMDNS$>
DocumentRoot /var/www/webcenter
RewriteEngine On
RewriteRule ^/$ /webcenter/spaces/<$SPACENAME$> [PT,L]
RewriteRule ^/webcenter$ /webcenter/spaces [PT,L]
RewriteLog /home/oracle/rewrite.log
<location />
  SetHandler weblogic-handler
  WebLogicHost <$WEBCENTERHOSTNAME$>
  WebLogicPort 8888
</location>
</VirtualHost>

No comments:

Post a Comment