Hi,
My wicket site works in IE6, IE7, Safari, Firefox 2,3 but not in Opera. When
first visiting the site everything works fine but when requesting an item
opera gives me an error message.
The message is in swedish but this is a free translation ( "URL is
redirected to .Click on the link to visit the page." )
Here are some links to the webpage.
www.eddyemery.com
www.eddyemery.com/items/brand/17
the first time I visit the link it works but if I refresh the page it does
not. I use NonVersionedHybridUrlCodingStrategy that I have copied from a
user from this forum ( can not remeber from who )
public final class NonVersionedHybridUrlCodingStrategy extends
HybridUrlCodingStrategy {
public NonVersionedHybridUrlCodingStrategy(String mountPath, Class<?
extends Page> pageClass) {
super(mountPath, pageClass);
}
@Override
protected String addPageInfo(String url, PageInfo pageInfo) {
// Do not add the version number as super.addPageInfo would do.
return url.replace( ".", "" );
}
}