/
var
/
www
/
html
/
stengineers
/
Upload FileeE
HOME
# Enable Rewrite Engine RewriteEngine On RewriteBase / RewriteRule ^product/([^/]+)$ single-product.php?product_title=$1 [L] RewriteRule ^subcategory/([^/]+)$ subcategory-single.php?categoryurl=$1 [L] # For category and subcategory pages RewriteRule ^category/([^/]+)$ category-single.php?urls=$1 [L] RewriteRule ^blogs/([^/]+)$ blogs-details.php?url=$1 [L] RewriteRule ^news/([^/]+)$ news-details.php?url=$1 [L] # For other pages RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule ^(.*)$ index.php?path=$1 [NC,L,QSA]