This is code my .htaccess file . This is correct code or not ?
RewriteRule ^([a-z_-]+)$ index.php?l=$1 [QSA,L]
https://www.example.com/english
RewriteRule ^([a-z_-]+)/([a-z_-]+)$ index.php?l=$1&p=$2 [QSA,L]
https://www.example.com/english/online-english-typing
RewriteRule ^([a-z_-]+)/([a-z_-]+)/([A-Za-z_-]+)$ index.php?l=$1&p=$2&t=$3 [QSA,L]
https://www.example.com/english/online-english-typing/Free-Online-Typing-in-english
This is working fine. but any other way to rewrite ?