I Want to Know about SEO-Friendly URLs Structure ?? And How Can Make Them in PHP??
feedback
|
closed as not a real question by Oded, JamWaffles, Jonah, Floern, KevinDTimm Aug 19 '11 at 20:45
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
SEO friendly URL structures are those that use real words instead of cryptic or numerical file and directory names. For example you may have a website with a product page and the product that is displayed is based off a querystring like http://www.example.com/products.php?id=145 A URL like this doesn't tell the search engine much. Instead if we used a URL like http://www.example.com/products/ProductName where ProductName is the actual Name of your product, a search engine will be able to better index the page and relate it to keywords. Often this is accomplished through mod_rewrite. | |||
feedback
|