[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [cobalt-users] redirects
on 5/3/00 5:42 AM, Grant Cummings at GrantC@xxxxxxxxxxxxxxxx wrote:
> Guess it would have been nice to show the format of the Response.Redirect:
>
> <% response.redirect("http://www.mydomain.net") %>
>
> If you have an ASP handler installed on your RaQ...that's all you need. Set
> the .com domain up, add a default.asp that consists only of this line of
> code and the transition will be virtually transparent to your site's
> visitors.
An .htaccess file would be more widely supported.
Or writing a perl script
#!/usr/bin/perl
print "Location: http://www.mydomain.net\n\n";
Or a php script
<? header("Location: http://www.mydomain.net" ?>
But honestly, the problem can easily be solved by configuring DNS and
Apache.
-k