サーバーのサブディレクトリに joomla をセットアップできません。サーバーのメインディレクトリに .htaccess があります:
<IfModule mod_rewrite.c>
RewriteCond %{HTTP_HOST} joomlasite.domaniew.pl
RewriteCond %{REQUEST_URI} !^/joomlasite
RewriteRule ^(.*)$ one/$1 [L]
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
そして、joomlasiteサブディレクトリに.htaccessがあります:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>
いくつかの異なる組み合わせを試しましたが、それでもエラーが発生しました:
Parse error: syntax error, unexpected '=', expecting '(' in /homez.221/myserver/www/joomlasite/includes/framework.php on line 42
どうすればそれを機能させることができますか?