You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@wicket.apache.org by Laurentiu Trica <la...@finalfolder.biz> on 2010/07/21 17:23:13 UTC

Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

Hello,

I'm rather new to wicket but I'm amazed about it's power.

I still have a bothering question: is it possible to make the website with
clean URLs?

I mean I want to have the first page like /welcome, the about page like
/about and somehow to get rid of the /?wicket:interface=:0:::: stuff - this
appears if you click the banner twice, for example...
This is for usability issues as is for SEO reasons.

Thank you in advance.

-- 
Best regards,
Laurentiu Trica

Re: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

Posted by shetc <sh...@bellsouth.net>.
+1
-- 
View this message in context: http://apache-wicket.1842946.n4.nabble.com/Clean-URLs-without-wicket-interface-0-stuff-is-it-possible-tp2297274p2300069.html
Sent from the Wicket - User mailing list archive at Nabble.com.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

Posted by Josh Kamau <jo...@gmail.com>.
Laurentiu Trica,I would highly recommend that you get wicket in action book.
Wicket has very many cool features. URL mapping is just one of them. To
avoid making obvious mistakes, its a good idea to have a big picture of the
entire framework. This will help you make informed design decisions rather
than doing something one way and then you discover that there is a cool
feature that makes it easier to do the same thing. The book will give you a
clear overview of all the things you need to know in advance.

Regards.
Josh


On Thu, Jul 22, 2010 at 11:45 AM, Laurentiu Trica <
laurentiu.trica@finalfolder.biz> wrote:

> Thank you, I'll have a look at these suggestions.
>
> On Wed, Jul 21, 2010 at 7:23 PM, Jeffrey Schneller <
> jeffrey.schneller@envisa.com> wrote:
>
> > Look into page mounting, BookmarkablePageLink
> >
> > mount(new BookmarkablePageRequestTargetUrlCodingStrategy("nicename",
> > your.package.PageName.class, null));
> >
> > BookmarkablePageLink nicenameLink = new
> > BookmarkablePageLink("nicename_link", your.package.PageName.class);
> >
> >
> >
> > -----Original Message-----
> > From: Laurentiu Trica [mailto:laurentiu.trica@finalfolder.biz]
> > Sent: Wednesday, July 21, 2010 11:23 AM
> > To: users@wicket.apache.org
> > Subject: Clean URLs without /?wicket:interface=:0:::: stuff - is it
> > possible?
> >
> > Hello,
> >
> > I'm rather new to wicket but I'm amazed about it's power.
> >
> > I still have a bothering question: is it possible to make the website
> > with
> > clean URLs?
> >
> > I mean I want to have the first page like /welcome, the about page like
> > /about and somehow to get rid of the /?wicket:interface=:0:::: stuff -
> > this
> > appears if you click the banner twice, for example...
> > This is for usability issues as is for SEO reasons.
> >
> > Thank you in advance.
> >
> > --
> > Best regards,
> > Laurentiu Trica
> >
> > ---------------------------------------------------------------------
> > To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> > For additional commands, e-mail: users-help@wicket.apache.org
> >
> >
>
>
> --
> Best regards,
> Laurentiu Trica
>

Re: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

Posted by Laurentiu Trica <la...@finalfolder.biz>.
Thank you, I'll have a look at these suggestions.

On Wed, Jul 21, 2010 at 7:23 PM, Jeffrey Schneller <
jeffrey.schneller@envisa.com> wrote:

> Look into page mounting, BookmarkablePageLink
>
> mount(new BookmarkablePageRequestTargetUrlCodingStrategy("nicename",
> your.package.PageName.class, null));
>
> BookmarkablePageLink nicenameLink = new
> BookmarkablePageLink("nicename_link", your.package.PageName.class);
>
>
>
> -----Original Message-----
> From: Laurentiu Trica [mailto:laurentiu.trica@finalfolder.biz]
> Sent: Wednesday, July 21, 2010 11:23 AM
> To: users@wicket.apache.org
> Subject: Clean URLs without /?wicket:interface=:0:::: stuff - is it
> possible?
>
> Hello,
>
> I'm rather new to wicket but I'm amazed about it's power.
>
> I still have a bothering question: is it possible to make the website
> with
> clean URLs?
>
> I mean I want to have the first page like /welcome, the about page like
> /about and somehow to get rid of the /?wicket:interface=:0:::: stuff -
> this
> appears if you click the banner twice, for example...
> This is for usability issues as is for SEO reasons.
>
> Thank you in advance.
>
> --
> Best regards,
> Laurentiu Trica
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
> For additional commands, e-mail: users-help@wicket.apache.org
>
>


-- 
Best regards,
Laurentiu Trica

RE: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

Posted by Jeffrey Schneller <je...@envisa.com>.
Look into page mounting, BookmarkablePageLink

mount(new BookmarkablePageRequestTargetUrlCodingStrategy("nicename",
your.package.PageName.class, null));

BookmarkablePageLink nicenameLink = new
BookmarkablePageLink("nicename_link", your.package.PageName.class);



-----Original Message-----
From: Laurentiu Trica [mailto:laurentiu.trica@finalfolder.biz] 
Sent: Wednesday, July 21, 2010 11:23 AM
To: users@wicket.apache.org
Subject: Clean URLs without /?wicket:interface=:0:::: stuff - is it
possible?

Hello,

I'm rather new to wicket but I'm amazed about it's power.

I still have a bothering question: is it possible to make the website
with
clean URLs?

I mean I want to have the first page like /welcome, the about page like
/about and somehow to get rid of the /?wicket:interface=:0:::: stuff -
this
appears if you click the banner twice, for example...
This is for usability issues as is for SEO reasons.

Thank you in advance.

-- 
Best regards,
Laurentiu Trica

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@wicket.apache.org
For additional commands, e-mail: users-help@wicket.apache.org


Re: Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?

Posted by MZ...@osc.state.ny.us.
https://cwiki.apache.org/WICKET/url-coding-strategies.html




Laurentiu Trica <la...@finalfolder.biz> 
07/21/2010 11:24 AM
Please respond to
users@wicket.apache.org


To
users@wicket.apache.org
cc

Subject
Clean URLs without /?wicket:interface=:0:::: stuff - is it possible?






Hello,

I'm rather new to wicket but I'm amazed about it's power.

I still have a bothering question: is it possible to make the website with
clean URLs?

I mean I want to have the first page like /welcome, the about page like
/about and somehow to get rid of the /?wicket:interface=:0:::: stuff - 
this
appears if you click the banner twice, for example...
This is for usability issues as is for SEO reasons.

Thank you in advance.

-- 
Best regards,
Laurentiu Trica





Notice: This communication, including any attachments, is intended solely 
for the use of the individual or entity to which it is addressed. This 
communication may contain information that is protected from disclosure 
under State and/or Federal law. Please notify the sender immediately if 
you have received this communication in error and delete this email from 
your system. If you are not the intended recipient, you are requested not 
to disclose, copy, distribute or take any action in reliance on the 
contents of this information.