# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\.(.*)$ [NC]
RewriteRule ^(.*)$ https://www.childrendc.com/$1 [L,R=301]
RewriteRule ^home$ index.php
RewriteRule ^about-us$ about-us.php
RewriteRule ^contact-us$ contact-us.php
RewriteRule ^account-login$ login.php
RewriteRule ^shopping-cart$ cart.php
RewriteRule ^online-shopping$ shop.php
RewriteRule ^checkout$ checkout.php
RewriteRule ^track-your-order$ order-tracking.php
RewriteRule ^search-result$ result.php
RewriteRule ^filter-result$ filter_result.php
RewriteRule ^backend-admin$ admin_login.php
RewriteRule ^confirm-order$ confirm-order.php
RewriteRule ^account-register$ customer_register.php
RewriteRule ^terms$ terms.php
RewriteRule ^privacy-policy$ privacy-policy.php
RewriteRule ^returns$ returns.php
RewriteRule ^cat-([a-z0-9-/]+)$ category.php?category-id=$1 [L,QSA]
RewriteRule ^cat-([a-z0-9-/]+)-page-(.+)?$ category.php?category-id=$1&page=$2 [L,QSA]
RewriteRule ^sub-([a-z0-9-/]+)$ sub-category.php?sub-category-id=$1 [L,QSA]
RewriteRule ^sub-([a-z0-9-/]+)-page-(.+)?$ sub-category.php?sub-category-id=$1&page=$2 [L,QSA]
RewriteRule ^brand-([a-z0-9-/]+)$ brands.php?brand-id=$1 [L,QSA]
RewriteRule ^brand-([a-z0-9-/]+)-page-(.+)?$ brands.php?brand-id=$1&page=$2 [L,QSA]
RewriteRule ^bk-([a-z0-9-/]+)$ product-details.php?product-id=$1 [L,QSA]
</IfModule>
# END WordPress