It seems that your http server doesn't support "URL rewriting" properly. For Apache servers that is specified in the file
.htaccess in the installation archive. What HTTP server are you using?
With some Apache configurations it helps to add a "RewriteBase" instruction in .htaccess, like this:
Quote:
<IfModule mod_rewrite.c>
Options -MultiViews
RewriteEngine On
RewriteBase /bbs/ <--- added
...
|
Hope this helps,
Rainer