Я пытаюсь переписать abc.example.com/path
в abc.example.com/index.php/abc/path
, используя следующий .htaccess:
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.
У кого-нибудь есть предложения?