Hi @Dear_AT
In order to set the redirection on xyz.com, you would need to configure a rule in the Apache web server. The rule should check for any request made to xyz.com and redirect it to abc.com.
You can achieve this by adding the following rule in your Apache configuration file:
<VirtualHost *:80>
ServerName xyz.com
Redirect 302 / http://abc.com/
</VirtualHost>
Also,
You can do this by creating a dispatcher rule in your dispatcher configuration.
You can use a redirect rule such as this one:
RedirectRule ^/ http://abc.com [R=301,L]
This rule will redirect all requests to xyz.com to abc.com.