Hi,<br><br>I have a configuration where my Seaside application (a Pier 2 website) is available in the root context. I use apache as a proxy to forward the requests to Seaside. Something like this:<br><br>    RewriteEngine On<br>
    RewriteRule ^/files/ - [last]<br>    RewriteRule ^/(.*)$ <a href="http://localhost:9093/myapp/$1">http://localhost:9093/myapp/$1</a> [proxy,last]<br><br>In Seaside I added the following preference:<br><br>    application preferenceAt: #serverPath put: &#39;/&#39;<br>
<br>Everything works fine most of the time. Except when the session has expired. When the users clicks on a link <a href="http://host/page?_s=xyz">http://host/page?_s=xyz</a> he is redirected to <a href="http://host/myapp/page">http://host/myapp/page</a>. And of course this page doesn&#39;t exist.<br>
<br>Any ideas how this can be fixed?<br><br>Jan. <br>