Then you need to add the domain at 'Domain Setup' and not at 'Domain Pointers' to get 2 different sites instead of 1.
you could probably use .htaccess to redirect to that page.
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} puthereyourotherdomain.tld
RewriteRule ^(.*)$ herethepage.php [L]
if ($_SERVER['HTTP_HOST'] == 'yourotherdomain.tld') {
include = 'theotherpage.php';
}