RewriteRule ^list lists.php [NC]
RewriteRule ^list/([^-]+)/ lists.php?listid=$1 [NC]
The problem is even if the link is like example.com/list/5 it is directed to list.php without the value. The second condition is not getting satisfied ever. How to solve this?