Apache redirect

Becker, Rob Becker at celeritas.com
Mon Aug 26 17:17:43 CDT 2002


Are you needing to do it at the server level?  If not, you can easily accomplish this using php.
Here is an example of a php redirect.
<?php
header("Location: your location here");
?>
Just put this into a file called index.html or whatever your home page is named and change the your 
location here to the actual location you want the file to redirect to and you're all set.
This will result in a small delay as users are redirected, but it shouldn't be too terrible.




More information about the Kclug mailing list