Hey I currently making a site that uses dynamic page.
I want to change the URL to use the product name
[code]
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteCond %{HTTP_HOST} ^domain.com.com$ [NC]
RewriteRule ^(.*)$ http://www.domain.com/$1 [L,R=301]
RewriteRule ^sex-toys/([0-9]+).html$ productDetails.php?recordID=$1
[/code]
my output is
http://www.domain.com/category/1842.html
I want to change 1842.html to product name any spaces will get a -
can any1 help me with this =D
regards,
josh