Redirects allow you to automatically send visitors from one web address to another. For example, you can redirect www.yourdomain.com to yourdomain.com, or move old pages to new ones.
Go to https://yourdomain.com:2083
and log in. Then, open the “Redirects” section.
In the “Type” dropdown, select your redirect type:
Select your domain and enter the path you want to redirect from. Then, enter the full destination URL. Example:
Source: /blog Destination: https://yourdomain.com/new-blog
You can check Redirect with or without www to include all domain variations. Enabling Wildcard Redirect will redirect all files within a directory to the same files in the target directory.
Click “Add” to activate the redirect. Test it by visiting the old URL to confirm it forwards correctly.
Redirects are saved automatically in your public_html/.htaccess file. You can also add them manually:
Redirect 301 /blog https://yourdomain.com/new-blog
Note: Incorrect redirects can create a redirect loop. Always test after each change.