次の .htaccess を使用しabc.example.com/path
て書き直そうとしています:abc.example.com/index.php/abc/path
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_HOST} ^(abc)\.example\.com
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php/abc/$1 [L]
状況は次のとおりです。
domain www.example.com
vhost www
subdomain abc.example.com
vhost abc
index.php/abc/
URLに表示されたくない。
誰か提案はありますか?