i have a property website where alot of properties have been uploaded, presently the url of a property looks like this
http://propertyonline.com.ng/property.php?product_id=255
But for the sake of google optimization i know it should not remain like this so i am try to rewrite my url to something clean like the title of the property.
i want to append the title of each property on the page to the property url
so instead of e.g
http://propertyonline.com.ng/property.php?product_id=255
we will have
http://propertyonline.com.ng/3 Bedroom Flat Large Compound On Banana Island Ikoyi
i have a variable that presently echos the title of the property when on this page dynamically based on the id of the property as above
<?php echo $row_prop['title']; ?>
Please how can i rewrite the url dynamically using htaccess
thanks