dynamic sites and search engines
dynamic sites and search engines
Out of context: Reply #6
- Started
- Last post
- 10 Responses
- UndoUndo0
seo friendly urls are just rerwriting a url like this
productPage.php?id=645353
to something like this
/product/productname/645353
this cuts the crap and makes alot more sense to the SE. when you use htaccess to rewrite the page you pull the bits between the slahes and assign them to vars in yr script so you can get info
ie yr script might look like this
$productId = $get['id']
$productname = $get['productname']where you have used htaccess to assign the values to data posted as GET