複数のサイトを実行するために使用しているホスティングアカウントmasterhost.comが1つあります。masterhost.comの下にsite1.com、site2.comなどがあり、masterhostディレクトリでこのコードを使用して、ドメイン要求をmasterhostディレクトリからsite1ディレクトリに再ルーティングしています。
RewriteCond %{HTTP_HOST} ^(www.)?site1.com$
RewriteCond %{REQUEST_URI} !^/site1/
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /site1/$1/
RewriteCond %{HTTP_HOST} ^(www.)?site1.com$
RewriteRule ^(/)?$ site1/index.php
ただし、site1.comのJoomlaはこれに関していくつかの問題を抱えており、デフォルトの画像パスをmasterhost.com/imagesにルーティングしています。
リクエストhttp://www.site1.com/imagesを認識してhttp://www.masterhost.com/site1/imagesに書き込むために使用できる書き換えはありますか?