Hello,
I would like to create a link such as http://www.mydomain.com/customer/account/createbis/ that give me the possibility to personalize the create account page, i try to modify layout/customer.xml adding <customer_account_createbis> :
The original link http://www.mydomain.com/customer/account/create uses the method createAction() in the controller class Mage_Customer_AccountController (in app/code/core/Mage/Customer/controllers/AccountController.php).
So you need to have a new method called createbisAction() in that class.
Remember that it would be better to override that class with one of your own script. This would prevent from loosing your work at next version.