» Quick Links
You can make money on these forums
We Share profits with you
Google
Google Adsense
Google Adwords
YPN
Yahoo
MSN Search
Web Directories
Web Hosting
Web Hosting Offers
Hosting News
Suggestions
Link Building
Domain Names
PHP Forums
MySQL Forums
» More Links
OSP News
Reseller Hosting
Shared Hosting
Dedicated Servers
Google Adsense
Search Engine Marketing
Link Development
Affiliate Marketing


» Advertising
Multiple DC PR Check

Free SEO Tools


Go Back   Webmaster Forums > Website Developement / Programming > PHP Programming and Tips

PHP Programming and Tips Discuss about PHP programming and Share Tips. Ask questions about Scripting and Errors.

Reply
 
Thread Tools Display Modes
  #1  
Old 09-18-2006, 12:08 PM
raydex raydex is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
raydex is on a distinguished road
Default will all the content still be indexed by search....,

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 --
Reply With Quote
Revenue Sharing Ads ( ?):
  #2  
Old 09-18-2006, 12:14 PM
ORNELL ORNELL is offline
OSP Starters
 
Join Date: Sep 2006
Posts: 13
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
ORNELL is on a distinguished road
Default

search engines won't usually be able to index all your pages that way i believe, best way is to map out all you links in a nice page that shows everything. you can make that page in PHP as well, not too difficult. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #3  
Old 09-18-2006, 12:16 PM
panther panther is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
panther is on a distinguished road
Default

If the bot can or will follow the links, it will index the content. Which bots will follow when, why, how, etc, is an SEO question. I can move this there if you'd like. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #4  
Old 09-18-2006, 12:21 PM
raydex raydex is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
raydex is on a distinguished road
Default

Yeah that’s what I though. If a link leads to content the bot should go there and index it.... Will create a site map page too to make the bots life easier, but I think this should be ok... Feel free to move it there, if you think I will get more relevant information. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #5  
Old 09-18-2006, 12:33 PM
SWORTH SWORTH is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
SWORTH is on a distinguished road
Default

Moved from PHP to SEO ... Remember that a bot sees the same HTML as a browser, it just handles it differently. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #6  
Old 09-18-2006, 12:39 PM
foster foster is offline
OSP Starters
 
Join Date: Jul 2006
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
foster is on a distinguished road
Default

Most SE bots have got no problem following dynamic links or indexing dynamic pages. But there are a few points to remember...
Google does limit indexing dynamic pages so they don't crash high-load servers. this is plainly written on their webmaster section.
Any variables that you use should NEVER include the letters "id" as that is seen as a session ID, and those pages are usually disregarded. Even something like "u_id" is to be avoided at all costs.
If you want to go high-tech on it, look at rewriting the URL's to make them SE friendly. It's not that hard to do when you get into it, but can take a bit of work to get there, but still well worth the effort. -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #7  
Old 09-18-2006, 12:44 PM
SWORTH SWORTH is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
SWORTH is on a distinguished road
Default

maybe you could use a sitemap and edit your .htaccess -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #8  
Old 09-18-2006, 12:56 PM
foster foster is offline
OSP Starters
 
Join Date: Jul 2006
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
foster is on a distinguished road
Default

Quote:
Originally Posted by SWORTH View Post
maybe you could use a sitemap and edit your .htaccess
Could you be a bit more specific? What, exactly, is s/he suppose to add to .htaccess to make the site more SE friendly? -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #9  
Old 09-18-2006, 01:02 PM
SWORTH SWORTH is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 20
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
SWORTH is on a distinguished road
Default

I am not a hero when it comes to .htaccess

But the thought would be
Code:
about.htm redirect to ?page=about
contact.htm redirect to ?page=contact
etc


I make the assumption that all the pages are known by steve101 and can be put in a sitemap.

Just a thought -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  #10  
Old 09-18-2006, 01:11 PM
kinsley kinsley is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 11
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
kinsley is on a distinguished road
Default

I don't think that naming all the pages index.php is a good idea. Best case scenario, you are loosing out on the opportunity to have keywords in the page title. Worst case scenario, the bot may say "I already indexed index.php, no need to go back there".
You might want to look at mod_rewrite if you want all your pages goind through the same script. Or you can include the script at the top of all your files -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
SEO -Spamming Methods ishan Premium Webmaster Articles 0 02-14-2007 01:30 PM
The future of Internet: Real-time Web Search and the Semantic Web waqar Premium Webmaster Articles 0 10-30-2006 06:41 AM
adding content on specific topic but less search choices panditji Yahoo 1 07-14-2006 01:53 PM
Asbru Releases Web Content Management v6.0 outsourcingplans Web Hosting Industry 0 03-13-2006 04:04 PM
Oracle Unveils Oracle Secure Enterprise Search 10g outsourcingplans Web Hosting Industry 0 03-03-2006 04:42 PM


All times are GMT. The time now is 03:06 PM.