On Thu, Mar 13, 2008 at 8:41 AM, raúl fuenzalida <[EMAIL PROTECTED]> wrote: > hello. is it possible to modify index.jsp to redirects the browser > client from the front page to a specific weblog? > > i mean: i have only one blog which url is > http://www.transitorio.cl/weblog/ . I configured roller to display > that weblog as frontpage, but it does it without redirecting the > browser client to that weblog url > > or is there other way to do that?
I use a client-side redirect in my index.jsp, something like this: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Redirecting to the my blog</title> <meta http-equiv="refresh" content="1;url=http://myhost/roller/myblog"> </head> <body bgcolor="#ffffff"> </body> </html> Hope that helps, - Dave
