Forum Moderators: phranque
here is the new version...
RewriteEngine on
RewriteRule ^(.*).htm$ productpage.php?product=$1
then I access the page like this...
www.mydomain.com/myProduct.htm which produces the page...
www.mydomain.com/productpage.php?product=myProduct
Can anyone help get the .css file working?
Thanks
Your server will do exactly what you tell it to do, no more, no less. Please don't blame the tools.
Your code will be better-behaved and faster with a few tweaks:
RewriteEngine on
RewriteRule ^([^.]+)\.htm$ productpage.php?product=$1 [L]
Jim