Mobile app version of vmapp.org
Login or Join
Cody1181609

: How to make new domain redirect to specific page of main domain without losing SEO? So I have a exchange office (lets say www.example.com) Wordpress website and I bought a new domain just to

@Cody1181609

Posted in: #Nginx #Redirects #Seo

So I have a exchange office (lets say example.com) Wordpress website and I bought a new domain just to sell Euro (www.euroexample.com). I want this new domain to show the specific page for Euro exchange in the main domain. What is the best way to do this without affecting SEO? It is now working with a proxypass on Nginx. When I access the euroexample.com, it shows the content of example.com/euro. Is this a good idea? It doesn't sound like one.

server {
listen 80;
server_name euroexample.com euroexample.com; location / {
proxy_pass example.com/euro; proxy_set_header Host euroexample.com;
}
}

10% popularity Vote Up Vote Down


Login to follow query

More posts by @Cody1181609

0 Comments

Sorted by latest first Latest Oldest Best

Back to top | Use Dark Theme