Options +FollowSymlinks
RewriteEngine on
RewriteRule ^products/([0-9]+)/([A-Za-z0-9-]+)/?$ products_details.php?pd_id=$1&prd_name=$2 [NC,L] # Handle product requests
Example : www.xyz.com/products_details.php?pd_id=51&prd_name=laptop
And you want to change them to look like this:
www.xyz.com/products/51/laptop
RewriteEngine on
RewriteRule ^products/([0-9]+)/([A-Za-z0-9-]+)/?$ products_details.php?pd_id=$1&prd_name=$2 [NC,L] # Handle product requests
Example : www.xyz.com/products_details.php?pd_id=51&prd_name=laptop
And you want to change them to look like this:
www.xyz.com/products/51/laptop
No comments:
Post a Comment