Options +FollowSymlinks RewriteEngine on RewriteRule ^(.*)\.htm index.php?page=$1
<?php $switch = $_REQUEST['page']; $switch = addslashes($switch); if (!isset($switch)) { include ("home.php"); } if (!file_exists("$switch.php")) { include ("home.php"); } else { include ("$switch.php"); } ?>