Redirect one domain to another

In this tutorial i will make redirect sikka.sa to sikka.io

  1. Go to Websites > List Websites where you will see your site listed. On the right side of your screen, you will see a Manage option of sikka.sa. Click it to make changes to your website.

  1. Click the Manage button next to the website that you you will be greeted with a screen like this

  1. Click the Rewrite Rules button next to the website that you you will be greeted with a screen like this

  1. Write the code bellow and replace sikka.sa with your source domain and sikka.io with the target domain

RewriteEngine On
RewriteCond %{HTTP_HOST} ^sikka.sa$ [NC]
RewriteRule ^(.*)$ https://sikka.io/$1 [L,R=301,NC]

Last updated