I'm trying to add rewrite rule for url in .htaccess in IMPERSSPAGES CMS. I have example.com/obj?id=123 and I want it to look like example.com/obj/123 Is it even possible because there is already a rewire rule in htaccess pointing to index.php:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ index.php?%{QUERY_STRING} [L]