Print

Print


On Feb 3, 2011, at 5:21 PM, Nate Hill wrote:

> Thank you for your responses...
> Virtual host setup was also on the agenda, guess both things have to happen
> at the same time.

You don't have to set up virtual hosts with the method that both
Brian and I mentioned, although the syntax is a little more 
confusing for people who might not be used to mod_rewrite.

You only need virtual hosts if you want your method (Redirect) to work:

	NameVirtualHost *

	<VirtualHost *>
	ServerName www.partnersinreading.org
	DocumentRoot /set/to/point/somewhere/
	
	Redirect permanent / http://www.sjpl.org/par
	</VirtualHost>

-Joe