Victor,
If you do have access to the web server's configuration, why not define a
site called https://xyzdomain.com and then have a single page in the home
directory there that redirects to the correct site:
https://www.xyzdomain.com? I usually have a single such directory that I
have all such sites point to and there I have a index.cfm page that
essentially has this code:

<cfif ListFirst(CGI.HTTP_HOST,".") NEQ "www">
    <cflocation url="https://www.#CGI.HTTP_HOST#')" addtoken="No">
</cfif>

or some similar type of code. Other people may have better solutions though.

HTH
George



On 4/17/07, Victor Moore <[EMAIL PROTECTED]> wrote:
>
> Hi,
>
> I have the following scenario:
> site: https://www.xyzdomain.com has a valid SSL certificate
> if users type https://xyzdomain.com they get invalid
> cert error.
>
> What is the best way to do a redirect (from https://xyzdomain.com  to
> https://www.xyzdomain.com <https://xyzdomain.com/> )  without getting an
> error.
> One possible solution (I think) is to have  a redirect file (basically a
> js
> script) and then pointing the  403.4 message to this file (not tested
> yet).
> Are there any other solutions?
>
> Thanks
> Victor
>


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Macromedia ColdFusion MX7
Upgrade to MX7 & experience time-saving features, more productivity.
http://www.adobe.com/products/coldfusion?sdid=RVJW

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:275586
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to