Gum*_*mbo 6

试试这条规则:

RewriteRule ^index/(.*) index.php/$1
Run Code Online (Sandbox Code Playgroud)

如果你想剥离它index/,试试这个:

RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule !^index\.php$ index.php%{REQUEST_URI}
Run Code Online (Sandbox Code Playgroud)