| Home | Register | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
|
|
#1 (permalink) |
|
Great Scott!!
Join Date: Feb 2008
Posts: 223
|
PHP and Google
i have been delving into PHP more recently, and have started to put together a site, where all the info is dragged from a database and displayed on index.php?page=[whatever] my question is, will the whole site get listed or not, will google follow these links or will my content be ignored? |
|
|
|
|
|
#2 (permalink) |
|
Vagina Vagina Vagina
Join Date: Jan 2008
Posts: 180
|
I get around this by creating a page called really-interesting-title.php with the simple content. <?php $page = "really-interesting-title"; $title = "Very Interesting Page"; $description = "All about this interesting page"; include("index.php"); ?> |
|
|
|
#6 (permalink) |
|
Registered User
Join Date: Apr 2008
Location: Temecula, California
Posts: 19
|
I've heard google will follow a url that has one var=value in it, but if the URL has more than one var in it then your out of luck. As mentioned, mod_rewrite is definitely the way to go. It's really not as mysterious and terrible to use as some would have you believe. phpfreaks dot com had/has an awesome tutorial to get you started. |
|
![]() |