With your shown samples, could you please try following. Place your htaccess file inside category folder and make sure you clear your browser cache before testing your URLs. Also your url category/product doesn't have any further path so nothing to pass as query string, hence I have removed it from second rule in following.
RewriteEngine ON
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^product/([w-]+)/?$ product.php?u=$1 [NC,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^product/?$ product.php [NC,L]
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…