トップディレクトリにメインプログラム用の .htaccess ファイルを書いていますが、別のプログラムを実行したいサブフォルダーも除外したいと考えています。
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine On
RewriteCond {REQUEST_URI} !=/ecart
RewriteRule ^files/ - [L]
RewriteRule ^(.*)/$ index.php?layers=$1 [L]
</IfModule>
RewriteCond を試していますが、うまくいきません。ecart/index.php ファイルに移動する必要がありますが、アドレスを www.mydomain.com/ecart として入力すると、フロント ドメインに移動されます。