Hi,
danke für die Antwort aber das habe ich gar nicht gesucht gehabt :-))
Vielleicht war meine Frage auch ein wenig unverständlich gestellt...
Der Tip mit der RewriteEngine war schon die richtige Richtung. Habe folgendes Beispiel gefunden allerdings noch nicht ausprobiert:
-----Code Snip-----
RewriteEngine on
# first try to find it in custom/...
# ...and if found stop and be happy:
RewriteCond /your/docroot/dir1/%{REQUEST_FILENAME} -f
RewriteRule ^(.+) /your/docroot/dir1/$1 [L]
# second try to find it in pub/...
# ...and if found stop and be happy:
RewriteCond /your/docroot/dir2/%{REQUEST_FILENAME} -f
RewriteRule ^(.+) /your/docroot/dir2/$1 [L]
# else go on for other Alias or ScriptAlias directives,
# etc.
RewriteRule ^(.+) - [PT]
------------------
Mehr Infos dazu gibt's hier: http://httpd.apache.org/docs-2.0/de/misc/rewriteguide.html
-----------------
Gruß Markus