How to redirect visitors from different parked domains ?

lookmaster

Newbie
Joined
Dec 1, 2021
Messages
34
Reaction score
12
I have a Wordpress blog and parked 10 domains on it. Is there any code or wp plugin that redirect visitors from different parked domains to different landing pages?
For example :
visitor 1 from parked domain1 to landing page 1
visitor 2 from parked domain2 to landing page2
And so on...
 
Create link or action button. A person clicks it and gets to another page or any url. If u just want to increase impressions count or other statistics, u can try the old way: when person opens page and starts looking at it, he has another page open unnoticedI don't remember how to do it, but it used to be popular (use punished by google). Aso can try the plugin domain mapping system
 
Alright first I thought your answer was in the question itself and maybe you needed instructions. But I think I got you (+something else in case not)

To the point

Since you gave an example like domain redirection to a landing page and all landings are different I assume, your question was more hosting related.

Head over to cPanel and there to addon domains

add your domain
In case it’s not hosted in the same host, head to your domain provider and point the nameservers (NS) to your hosting NS

(You can find the domain on your domain/DNS settings on your hosting provider after you add it)


install Wordpress on them and done!

- Optional

In case you want to have all the pages on the same page for any reason just do as mentioned above and forward them to your desired landing pages and subfolders. (Pretty damn pointless in my honest opinion)

again, just use them.

if you’ve meant just forwarding you simply head to your domain provider’s domain management and set forwarding to your desired link

like this:

8130405A-D8F8-412C-8568-9B0B49733F1F.png

Or this: (Worst case)

E9CBE3AC-469B-4DBA-BE0C-BFB8EAE96BEC.png
 
the best way to do it is in the hosting DNS
but there is more options
you can try a "traffic routing" service
or you can just add this Javascript in your website :

*******

if(window.location.hostname === 'domain1.com') window.location.href='LandingPage1.com'
else if (window.location.hostname === 'domain2.com') window.location.href='LandingPage2.com'
 
Back
Top