Hello comrades! I decided to implement a CNC without .htaccess as follows:
the query will be: mysite.zone/?/show_page/name/number
<?php preg_match_all('#\/([a-z0-9_]*)#', $_SERVER['QUERY_STRING'], $index_qs); echo $index_qs[1][0];//show_page echo $index_qs[1][1];//name echo $index_qs[1][2];//number ?>
Question: what are the search engine robots for such URl addresses? What possible problems may arise when using such URLs ?