AW: kategorie unterseiten sind nicht vorhanden - 404
ich habs geloest. 
das problem war das ich in meinem root verzeichniss eine .htaccess hatte mit folgendem inhalt:
RewriteEngine on
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
# Bluehost.com
# .htaccess main domain to subdirectory redirect
# Copy and paste the following code into the .htaccess file
# in the public_html folder of your  
hosting account
# make the changes to the file according to the instructions.
# Do not change this line.
RewriteEngine on
# Change yourdomain.com to be your main domain.
RewriteCond %{HTTP_HOST} ^(www.)?pandaweb.ph$
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteCond %{REQUEST_URI} !^/pandaweb/
# Don't change this line.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
# Change 'subdirectory' to be the directory you will use for your main domain.
RewriteRule ^(.*)$ /pandaweb/$1
# Change yourdomain.com to be your main domain again.
# Change 'subdirectory' to be the directory you will use for your main domain
# followed by / then the main file for your site, index.php, index.html, etc.
RewriteCond %{HTTP_HOST} ^(www.)?pandaweb.ph$
RewriteRule ^(/)?$ pandaweb/index.php [L]
dieser script ist uebrigens dafuer da, das der inhalt aus dem unterordner auf die hauptdomain adresse weitergleitet wird.
html_public/jtl3   hier ist jtl3 installiert
was ich nicht wollte ist das im browser pandaweb.ph/jtl3 angezeigt wird
es sollte jtl3.pandaweb.ph angezeigt werden
****************************************************
in dem unterordner namens jtl3 hatte ich eine andere .htaccess drin mit dem folgendem inhalt:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
****************************************************
ich habe es folgendermassen geloest:
ich habe die jtl3. zip datei entpackt und den inhalt der .htaccess datei in meine .htaccess datei uebertragen:
.htaccess schaut jetzt so aus:
# Use PHP5 Single php.ini as default
AddHandler application/x-httpd-php5s .php
<ifModule mod_deflate.c>
   <FilesMatch "\\.(js|css|html|htm|php|xml)$">
      SetOutputFilter DEFLATE
   </FilesMatch>
</ifModule>
<ifModule mod_headers.c>
   Header unset ETag
   FileETag None
   
   <filesMatch "\\.(ico|pdf|flv|jpg|jpeg|png|gif|swf)$">
      Header set  
Cache-Control "max-age=2592000, public"
   </filesMatch>
   <filesMatch "\\.(css)$">
      Header set Cache-Control "max-age=604800, public"
   </filesMatch>
   <filesMatch "\\.(js)$">
      Header set Cache-Control "max-age=216000, private"
   </filesMatch>
   <filesMatch "\\.(xml|txt)$">
      Header set Cache-Control "max-age=216000, public, must-revalidate"
   </filesMatch>
   <filesMatch "\\.(html|htm|php)$">
      Header set Cache-Control "max-age=1, private, must-revalidate"
   </filesMatch>
</ifModule>
<IfModule mod_rewrite.c>
   RewriteEngine on
   RewriteRule ^((urllist|sitemap_).*\.(xml|txt)(\.gz)?)$ includes/sitemap.php?datei=$1 [L]
   RewriteCond %{REQUEST_FILENAME} !-d
   RewriteRule !\. index.php [L]
</IfModule>
****************************************************
danke an Joerg fuer den tipp!
Godspeed
zyklus