Call a duplicate registration form with other url

Add this in your functions.php

function my_reg_page( $register_url ) {
return home_url() . '/register/';
 }
 add_filter( 'register_url', 'my_reg_page' );

This example would return a registration URL http://Yourdomain.com/register/ for the wp_registration_url() function