Saltar al contenido

IBM WebSphere Portal 8.5 – Redirect IBM HTTP Server – /demo to /wps/portal/demo

En este post vamos a ver la configuración que necesitamos realizar en el archivo file [http.conf] de IHS (IBM HTTP Server) para poder realizar un redirect.

Deseamos redireccionar

DE: http://myportal.com/demo

HACIA: http://myportal.com/wps/portal/demo

##

####################################################################################
#
# Portal Custom IHS Configuration file
#
####################################################################################

<ifModule mod_rewrite.c>

RewriteEngine On
RewriteRule «^/demo$» «/wps/portal/Home/demo» [R=301,L]

</ifModule>

##