私の.htaccessファイルはそのようなものです
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond $1 ^(.*)$
RewriteRule ^(.*)$ router.php?_doroute=$1 [L,QSA]
そして、私はそのようなリンクを持っています
http://www.site.com/cr?v=lock/223
.htaccess RewriteRuleを使用して、そのようにリンクを開くことはできますか?
http://www.site.com/?l=223 または http://www.site.com/l/223
ありがとうございました