PDA

View Full Version : redirecting with PHP


dylan
09-10-2005, 09:47 AM
When you create folders on your server and there is no index.php file it will display all your file contents which is not the best thing to do. So the best way it to insert an index.php file and make it redirect it to your main site.

here is how.

Create a file called index.php and then enter this

---- Type ----

header("Location: http://your-site-name.com");


Then you will have it pointing to your main page and no one can see your file contents :)