[Seaside] default entry & Base URL := URL redirect

Brad Fuller brad at sonaural.com
Thu Mar 1 02:07:01 UTC 2007


In past versions, one method to redirect so the application path is not 
in the URL was to change 'default entry' to your app and also to change 
your apps base-path to '/'

Now, Base-path does not exist. What is the method to make your URL:

http://mydomain.com/seaside/myapp

to

http://mydomain.com/

thanks,

brad


Nevin mentioned in the past that he subclassed WAKom and implemented 
#process:

process: aRequest
     aRequest url = '/'
         ifTrue: [aRequest url: '/seaside/home'].
     ^ super process: aRequest




More information about the Seaside mailing list