top of page
Auto Redirect to External Site
Reference to here for new feature of Wix to do redirection [Updated at 2 Nov 2020]
Steps to set auto redirect to external site, below take example: set redirect from "cms.its.hku.hk/its" to external site "its.hku.hk"
(Change the "/its" and "its.hku.hk" accordingly)



Create New Page​
-
Click Menu icon from left
-
Click +Add Page
3. Click Page Setting
4. Click Hide
5. Click SEO (Google)

6. Change the URL to its

Use Wix Code to set auto redirect​
-
Click Dev Mode from top bar
-
Click Turn on Dev Mode

3. Click the arrow to open the Page Code at bottom right corner.
import wixLocation from 'wix-location';
$w.onReady(function () {
wixLocation.to("https://its.hku.hk");
});

4. Paste and edit the URL of the destination in Page Code
bottom of page