Edwin. We have set up school district 82 (
www.cmsd82.bc.ca) with sub domains for every school. Works wonders. However we have some schools with existing sites that they want to keep until their subscriptions run out. So we thought we'd just dummy up the school district site, and put a redirect to their existing site by putting the following in the .htaccess file for the school.
e.g. ########## Begin - Redirecting non-www request to www
#
RewriteEngine On
RewriteCond %{HTTP_HOST} ^roywilcox.cmsd82.bc.ca [NC]
RewriteRule (.*)
www.roywilcoxschool.com////$1 [L,R=301]
#
########## End - Redirecting non-www request to www
However, changing one .htaccess file changes all - so in the end, we can only redirect one school. Is there a better way to do this?
Thanks, Edwin
Doug Thomson