301 Redirect from unbounce pages to root domain

  • 11 September 2017
  • 1 reply
  • 22 views

Hi there,

I’m looking to make a massive 301 redirect from “welcome.company.be” (so unbounce pages) to “company.be” (our website, no unbounce pages).

We stop a product and I want to make a redirect for all old pages with a specific sub-folder related to this product.

How can I proceed ?

Thanks for your help !


1 reply

Hey Cyril_Piette1,

Best way of doing this is on server side. I can see your webserver is Nginx so you might just want to point the welcome.company.be CNAME or subdomain to your own server and make the redirect with a new server block in the nginx site config.

So something like this would work:

server {
    listen 80;
     server_name welcome.company.be;
        return 301 http://$server_name$request_uri;
}

But I think you get the idea anyway. Its something I would suggest doing outside of unbounce.

If you are unfamiliar with the hosting configs please contact your webmaster or hosting.

Roland

Reply