我正在尝试在 IMPERSSPAGES CMS 中为 .htaccess 中的 url 添加重写规则。我有example.com/obj?id=123,我希望它看起来像example.com/obj/123 是否有可能,因为htaccess中已经有一个指向index.php的重新布线规则:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?%{QUERY_STRING} [L]