Hey I have a question. When I do this:
How do I make http://yourdomain.com load http://yourdomain.com/$page=index ?
Thanks ahead of time!
-Nick

| Code: |
| $start = '/home/username/domains/yourdomain/public_html/';
$nav = $_GET['nav']; if(file_exists($start.$nav.'.php')){ include($start.$nav.'.php'); } else { header('Location: http://yourdomain/403.shtml'); } |
How do I make http://yourdomain.com load http://yourdomain.com/$page=index ?
Thanks ahead of time!
-Nick
