This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed last month.
I have created several Q about correctly mapping a website with a database so that google can index it properly. However, need more info.
My website is a classifieds website (PHP). Users can search ads on my site. Searching for BMW will bring up only the titles of all bmw ads and display them as a search result. (like google kindof). When user clicks on an ad , no matter which ad, an ID of that ad is passed along to show_ad.php . In show_ad.php the ID is received and the proper ad is displayed from the mysql database. Also, when displaying the ad, meta-tags are also dynamically changed (fetched from db) to fit the ad (I need this so that google finds the ad easier hopefully).
Now, would this be enough for making my site friendly ?
Also, I can change the URL with .htaccess I think, so instead of:
http://www.mypage.com/show_ad.php?ID=12345
it will show:
http://www.mypage.com/12345.htm
Also, I think I must add a link like the one above inside a static html page for each ad created, just so that google knows its there... right?
But, still, will this be enough?
Please guide me...