ich bräuchte auch nochmal eure hilfe
ich habe 2 Contenido-Installationen auf dem Server (eine für eine aufgeschaltete Domain)
die contentverzeichnisse liegen in
/1150/ und
/leben-und-handwerk/550/
vom root ausgehend.
die .htaccess habe ich nun nicht in den root gepackt, weil ich jeweils noch mindestens einen mandanten mehr in die installation integrieren möchte und habe sie daher ins content verzeichnis gepackt
das ganze dann im Contenido entsprechen geändert und die .htaccess beim hauptmandaten (1150) angepasst:
#AddType x-mapp-php5 .php
#AddHandler x-mapp-php5 .php
<IfModule mod_rewrite.c>
RewriteEngine on
# Specify a base URL-path for the rules
# -------------------------------------
RewriteBase /1150/
# Exclude some files and directories from rewriting
# -------------------------------------------------
RewriteRule ^usage/.*$ - [L]
RewriteRule ^contenido/.*$ - [L]
RewriteRule ^setup/.*$ - [L]
RewriteRule ^upload/.*$ - [L]
RewriteRule ^test/.*$ - [L]
RewriteRule ^1150/front_content.php.*$ - [L]
# enable following line if you want to run the plugin test
#RewriteRule ^mr_test.php.*$ - [L]
# Catch some common exploits in query string to get rid of them
# NOTE: Conditions to prevent protocolls (ftp, http[s]) in query string could be a
# disadvantage in some cases
# --------------------------------------------------------------------------------
RewriteCond %{QUERY_STRING} contenido_path=.*$ [NC,OR]
RewriteCond %{QUERY_STRING} cfg\[path\]=.*$ [NC,OR]
RewriteCond %{QUERY_STRING} _PHPLIB\[libdir\]=.*$ [NC,OR]
RewriteCond %{QUERY_STRING} (\<|%3C).*script.*(\>|%3E) [NC,OR]
RewriteCond %{QUERY_STRING} ftp://.*$ [NC,OR]
RewriteCond %{QUERY_STRING} http[s]*://.*$ [NC]
RewriteRule ^.* - [F,L] # all matching conditions from above will end in nirvana
# One RewriteRule to rule them all
# --------------------------------
RewriteRule !\.(js|ico|gif|jpg|jpeg|png|css|pdf)$ front_content.php [NC,QSA,L]
</IfModule>
das gleiche wollte ich beim contentverzeichnis der unterdomain auch machen (was einmal klappt, klappt auch ein zweites mal

) .. aber da sagt er mir das er die front_content.php nicht finden kann ..
The requested URL /550/front_content.php was not found on this server.
hochgeladen ist alles .. aktuell auch (habs zweimal überprüft)
seht ihr den fehler ?