First update the dcef3 svn trunk, I've made some changes
and use the OnBeforeResourceLoad event like this
var
u: TUrlParts;
begin
// redirect home to google
if CefParseUrl(request.Url, u) then
if (u.host = 'home') then
begin
request.Url := CefCreateUrl(u);
end;
end;
--
Henri Gourvest