Forum Moderators: coopster
Options +FollowSymLinks
RewriteEngine on
RewriteRule (.*)\.html$ index.php?refpage=$1
RewriteRule (.*)\.htm$ index.php?refpage=$1
In the index.php file add:
$refpage = $_GET['refpage'];
Now you can use $refpage to form your welcome statement.
Example:
echo "You have come to ".$refpage.".html";