Redirect URL

In EnterMedia 11.x you can setup a redirect adding a path action command to the _site.xconf in your root (webapp) folder:

 <path-action name="Admin.redirect" redirectpath="/assets/emshare/index.html" /> 

 

Prior versions of EnterMedia should use one of the following:

 

1: Redirecting By Host Name

  1. Use the FileManager to open the root/_site.xconf
  2. Add this path action command: <path-action name="Admin.redirectHost"> <redirecthost>https://examplewebsite.com</redirecthost> </path-action>
  3. Note: there is no trailing slash /
  4. Before saving, verify that you have a valid xml file. Otherwise site will not load again.

Or,

2: Redirecting Path

  1. Use the FileManager to open the root/index.xconf
  2. Add this path action command in-between the xml <page> tags:
    1. <path-action name="Admin.redirect"> <redirectpath>/emshare/*</redirectpath> </path-action>
  3. Before saving, verify that you have a valid xml file. Otherwise site will not load again.

Or,

3: HTTPS

 <path-action name="Admin.forwardToSecureSocketsLayer" /> <property name="useshttps">true</property>