我使用 CI 并得到这样的 URL:www.example.com/product/id/5
使用此 .htaccess 文件删除 index.php:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 !^(index\.php|favicon\.ico|img|js|robots\.txt|css)
RewriteRule ^(.*)$ index.php/$1 [L]
</IfModule>
我现在如何扩展 .htaccess 文件以摆脱 URL 中的“/id/”?
提前谢谢