Depends, do you want the link to stay as it is? Or do you want the content to be different depending on the address?
If you want it to redirect, you can use something like this:
PHP Code:
<?php
if(isset($_GET['link'])) {
if($_GET['link'] == 'about')
header('Location: http://www.yoursite.com/about.html');
elseif($_GET['link'] == 'home')
header('Location: http://www.yoursite.com/home.html');
}
?>
Or if you don't mean like that, then maybe:
PHP Code:
<?php
if(isset($_GET['link'])) {
if($_GET['link'] == 'about') {
echo 'You are on the about page';
// Rest of content for about page here
}
elseif($_GET['link'] == 'home') {
echo 'You are on the home page';
// Rest of content for home page here
}
else {
echo 'Couldn't find the page you were looking for';
// Rest of content for when a page can't be found
}
}
?>
Hope that's what you're looking for, if not then please try and elaborate and I'll see if I can figure something out. Good luck 
Edit: Sorry about bad formatting but can't tab out things when I type code here.
Bookmarks