Hi guys, I am having some problem with some .htaccess issue. Looking for help from experts. Let me describe briefly. Case 1: I can view this static page tinyprintsongoing.php to domain_name/coupons/tinyprints/ongoing.html very well by the following rewrite code. Options +FollowSymlinks RewriteEngine on RewriteRule ^coupons/tinyprints/ongoing.html$ tinyprintsongoing.php [NC] Case 2: I have another dynamic page article.php with 3 variables (category, subcategory, id). I want to show the page as domain_name/category/subcategory/id.html. But when I rewrite by the following code, it works, but the above url mismatching. RewriteRule ^([^/]+)/([^/]+)/([^/]+).html$ article.php?url=$1&suburl=$2&article=$3 [L] What I Want: I want to keep the top url structure as it is now and the 2nd url is to be the same structure as sample. Is it possible? How?