hi all,
I'm redesigning my site and planning on having 1 page index.php which then feeds the content in depending on the page the user wants to view so for example I might have an about link which would actually be something like:
PHP Code:
<a href=".$_SERVER['PHP_SELF']."?page=about">
And then either a lookup in a reference table in the db or simply doing:
PHP Code:
if(!empty($_REQUEST['page'])){ $page = mysql_real_escape_string(trim($_REQUEST['page']));}
include("$page");
to get the content.
Now my question is, will all the content still be indexed by search engines and will this have any impact on that side of things... Search engine placement and all???
-- This message may have been cut off and the rest will only be shown to members. To become a member, click here --