View Single Post
Old 02-01-2008, 05:42 PM  
netpimp
Registered User
 
netpimp's Avatar
 
Join Date: Jan 2005
Location: Phoenix, AZ
Posts: 66
An alternate method, though it won't carry your host arguments is just to drop it in a vhost. (mod_ssl config example), but you can at least use that to intercept 404 and such as well and send them back to the front. If your coding uses all relative files and/or any links are all https: you'll be fine.

Code:
<VirtualHost x.x.x.x:80> 
SSLEngine off
Port 80
ServerName some.server.name
Redirect / https://some.other.host
</VirtualHost>
netpimp is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote