How to use .htaccess file
--------------------------------.htaccess file coding-------------------
RewriteEngine On
RewriteRule ^index.html$ index.php
RewriteRule ^about-us.html$ about-us.php
RewriteRule ^contact-us.html$ contact-us.php
RewriteRule ^careers.html$ careers.php
RewriteRule ^products.html$ products.php
RewriteRule ^(.*)-([0-9]+)\.html$ sub-products.php?name=$1&id=$2
Comments
Post a Comment