Redirecting Pages
From Support - DLCC Web
Advanced users of DLCCWeb looking to customize pages and navigation options can use javascript redirects to create pages that are linked in the navigation and point to pages on different websites. To create a javascript redirect, switch into source mode when editing a page by clicking the "source" button in the bottom row on the right-hand side, and then paste this code in:
<script type="text/javascript">
window.location = "http://www.REDIRECT.com/LINK";
</script>
Be sure to replace "http://www.REDIRECT.com/LINK with the full URL of the page you are redirecting visitors to.
