You are confusing file names and page titles.
The page title which a browser shows is stored in the html <title> element.
You can redirect file names in the apache webserver using the redirect module (ModRewrite). If the redirect engine is installed and active and redirection is allowed for your .htaccess file and directory, then you can use .htaccess to redefine file names. Example:
RewriteEngine On
RewriteRule test1 page.php?id=1
RewriteRule test2 page.php?id=2
or more generally RewriteRule test([0-9]+) page.php?id=$1