Creo que hace poco preguntaron algo parecido y propuse un códiguillo...
Creo que era algo así: Código PHP:
<script>
if(!location.search){location.href=location.href+"?"}
</script>
Lo puedes poner en una función en el head y luego llamarla con el onload del body. Así:
<head>
<script>
function recarga(){
if(!location.search){location.href=location.href+" ?"}
}
</script>
</head>
<body onload="recarga()">
Dime si esto te sirve...