我正在尝试重写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 中。
有人有什么建议吗?