My .htaccess file is like that
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 ^(.*)$
RewriteRule ^(.*)$ router.php?_doroute=$1 [L,QSA]
And i have a link like that
http://www.site.com/cr?v=lock/223
Does is it possible to use .htaccess RewriteRule to let the link open like that?
http://www.site.com/?l=223 Or http://www.site.com/l/223
Thank you