no. maybe you could just run everything from the index page though.
www.yourdomain.com/?page=customer
www.yourdomain.com/?page=home
www.yourdomain.com/?page=login
PHP Code:
<?
switch ($_GET['page'])
{
case "customer":
{
include("includes/customer.php");
break;
}
case "login":
{
include("includes/login.php");
break:
}
default:
{
include("includes/home.php");
}
}
?>
your pages will still be defined by the page var though.
you could make it something that isn't so obious .. like
www.yourdomain.com/?a6=i35312095645
but then again, that might be the same as naming your page i35312095645.php
why exactly are you trying to accomplish this?