Redirect URL
In EnterMedia 9.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:
Redirecting By Host Name
- Use the FileManager to open the root/_site.xconf
- Add this path action command:
<path-action name="Admin.redirectHost"> <redirecthost>https://examplewebsite.com</redirecthost> </path-action>
- Note: there is no trailing slash /
- Before saving, verify that you have a valid xml file. Otherwise site will not load again.
Redirecting Path
- Use the FileManager to open the root/index.xconf
- Add this path action command in-between the xml <page> tags:
<path-action name="Admin.redirect"> <redirectpath>/emshare/*</redirectpath> </path-action>
- Before saving, verify that you have a valid xml file. Otherwise site will not load again.
HTTPS
<path-action name="Admin.forwardToSecureSocketsLayer" /> <property name="useshttps">true</property>