Step one, configure your domain name

By default, Quick Creator will generate a unique second-level domain name for your website, for example: https://aaafs2fyurntzt2x.quickcreator.io. Since this second-level domain name belongs to Quick Creator, you should not directly index it to search engines. You need to assign an unoccupied URL under your main website domain name to link to Jump, and then provide your URL to search engines for inclusion to ensure the expected results.

For example, if your main website domain name is https://www.example.com, we recommend that you point https://www.example.com/xxxx to our second-level domain name, and the "xxxx" in the path is up to you control, the operation is as follows:

Please click here to bind your main site domain name and Path:

Untitled

Enter the configuration page of the website and select "Domain",enter your domain name,Click Save&Publish to republish your website.

Untitled

The second step, configure your jump

After the re-publishing of the website is completed, you need to provide the following configuration to your technical personnel, and they will perform jump configuration on your main website (contact us if you need technical support):

Nignx

    # /seo not a fixed protocol, you can adjust to any path as needed
    location /seo {
           proxy_ssl_verify off;
           proxy_set_header Host "aaalb2lhv6hjmlin.quickcreator.io"; #Change to the second-level domain name assigned to you by quick creator
           proxy_ssl_server_name on;
           proxy_pass <https://aaalb2lhv6hjmlin.quickcreator.io/>; #Change to the second-level domain name assigned to you by quick creator
           proxy_redirect ~^(http://[^/]+)(/.*)$ https://$http_host$2;
    }

HAproxy

    frontend fe_seo
        bind *:80
        mode http
        acl seo path_beg /seo
        use_backend bk_seo if seo

    backend bk_seo
        mode http
        option forwardfor
        http-request set-header Host aaalb2lhv6hjmlin.quickcreator.io #Change to the second-level domain name assigned to you by quick creator
        http-request set-header X-Forwarded-Proto https
        server server1 aaalb2lhv6hjmlin.quickcreator.io:443 ssl verify none #Change to the second-level domain name assigned to you by quick creator