SE friendly redirect

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
4 messages Options
Reply | Threaded
Open this post in threaded view
|

SE friendly redirect

Sebastian Sastre-2
Hi there,
I have to make a page with an anchor that will do a redirect to another site.
First thing that comes to mind is to do it in a callback but that will just show
the _s and _k of the callback instead of exposing the other site's url.
How can I render an anchor that exposes an url so search engines can "count"
that reference?
thanks
sebastian

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: SE friendly redirect

Lukas Renggli
> I have to make a page with an anchor that will do a redirect to another site.
> First thing that comes to mind is to do it in a callback but that will just show
> the _s and _k of the callback instead of exposing the other site's url.

You will see the URL of the other site, not the one of the callback.

> How can I render an anchor that exposes an url so search engines can "count"
> that reference?

html anchor
   url: 'http://www.seaside.st/';
   with: 'Seaside'

Cheers,
Lukas

--
Lukas Renggli
http://www.lukas-renggli.ch
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

RE: SE friendly redirect

Sebastian Sastre-2
ah, true. Cool.
I noticed #url: *must* be sent before #with: and not the other way around.
thanks,
sebastian

> -----Mensaje original-----
> De: [hidden email]
> [mailto:[hidden email]] En nombre
> de Lukas Renggli
> Enviado el: Friday, May 29, 2009 15:19
> Para: Seaside - general discussion
> Asunto: Re: [Seaside] SE friendly redirect
>
> > I have to make a page with an anchor that will do a
> redirect to another site.
> > First thing that comes to mind is to do it in a callback
> but that will just show
> > the _s and _k of the callback instead of exposing the other
> site's url.
>
> You will see the URL of the other site, not the one of the callback.
>
> > How can I render an anchor that exposes an url so search
> engines can "count"
> > that reference?
>
> html anchor
>    url: 'http://www.seaside.st/';
>    with: 'Seaside'
>
> Cheers,
> Lukas
>
> --
> Lukas Renggli
> http://www.lukas-renggli.ch
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside

_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
Reply | Threaded
Open this post in threaded view
|

Re: SE friendly redirect

Pat Maddox-2
That's true with every renderable object, because #with: actually
spits it out onto the canvas.  The object needs to be completely set
up (url, css class, etc) before rendering it to the canvas.

Pat

On Fri, May 29, 2009 at 11:40 AM, Sebastian Sastre <[hidden email]> wrote:

> ah, true. Cool.
> I noticed #url: *must* be sent before #with: and not the other way around.
> thanks,
> sebastian
>
>> -----Mensaje original-----
>> De: [hidden email]
>> [mailto:[hidden email]] En nombre
>> de Lukas Renggli
>> Enviado el: Friday, May 29, 2009 15:19
>> Para: Seaside - general discussion
>> Asunto: Re: [Seaside] SE friendly redirect
>>
>> > I have to make a page with an anchor that will do a
>> redirect to another site.
>> > First thing that comes to mind is to do it in a callback
>> but that will just show
>> > the _s and _k of the callback instead of exposing the other
>> site's url.
>>
>> You will see the URL of the other site, not the one of the callback.
>>
>> > How can I render an anchor that exposes an url so search
>> engines can "count"
>> > that reference?
>>
>> html anchor
>>    url: 'http://www.seaside.st/';
>>    with: 'Seaside'
>>
>> Cheers,
>> Lukas
>>
>> --
>> Lukas Renggli
>> http://www.lukas-renggli.ch
>> _______________________________________________
>> seaside mailing list
>> [hidden email]
>> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
> _______________________________________________
> seaside mailing list
> [hidden email]
> http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside
>
_______________________________________________
seaside mailing list
[hidden email]
http://lists.squeakfoundation.org/cgi-bin/mailman/listinfo/seaside