There is an ad site. in it on the main 4 headings Buy, sell, rent, withdraw. At the moment the page is dynamic, i.e. when any item is selected, the parameter is passed to the browser address using the GET method.

But I thought, because if you make 4 pages separately, then you can write 4 different titles and headings, which is better for a search engine. Develop my doubts. I would not want to create 4 duplicate one page.

    2 answers 2

    If the selection has a GET parameter and the pages are dynamic, why not take a title from anywhere, preferably from the same place as the page content.

    The problem is what?

    4 different pages, 4 different titles, keyboards and descriptions.

    The question is a little wrong, I think.

    • Yes, you can make it so that when you go to this dynamic page, depending on the parameter, the desired title keywords and descriptor are transmitted. But will they keep the search spider on your server? Will he go through all the possible parameters that I can pass using the get method? - Radik Kamalov
    • one
      I did not understand something, why should the goeth transmit the remaining parameters? You pass only the alias parameter of the page, in php you check whether there is such a value, if there is, then you show the page with the necessary parameters. - Artem
    • I guess I incorrectly speak. I have only one file. index.php. And that means he has one title. the remaining 3 pages per se does not exist. Will the spider index them? - Radik Kamalov
    • ?? why is he alone ??? maybe not one. <? if ($ page == 'test') {$ mytitle = 'title1'; } else {$ mytitle = 'title2'; }?> <html> <head> <title> <? php echo $ mytitle; ?> </ title> </ head> <body /> </ html> - thunder
    • Spider index html stuffing, and not what you have in php ... what are you? I fight to imagine how you generate statics ..... - thunder

    The search engine for the most part has long been pofigu on the meta tags. As it seems more logical from a human point of view, do so.

    • @Roman Moiseev, the search engine may be "pofigu", but when issuing results with a search query, the user is much more pleasant to watch not bare link, but also a description of what you see by clicking on this link. It is this description that is taken from the meta description - Deonis