Search Engine Optimization
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsWeb DesignSearch Engine Optimization

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old April 22nd, 2005, 04:38 PM
haid's Avatar
haid haid is offline
<-- me, in the negative
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Location: /etc/php.ini
Posts: 471 haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 15 h 57 m 27 sec
Reputation Power: 54
Send a message via AIM to haid Send a message via MSN to haid
dynamic links

hello,
my site uses dynamic links for games provided. ex: games.php?name=this

basically, google sucks. msn isn't much better. rock on yahoo. yahoo has all my games indexed, however, msn and google do not. i was wondering if google and msn take yahoo's index at some point.
__________________
Cheers,
Ryan

Reply With Quote
  #2  
Old April 22nd, 2005, 09:08 PM
Matt_M Matt_M is offline
- Matt
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2004
Location: Oregon
Posts: 152 Matt_M User rank is Corporal (100 - 500 Reputation Level)Matt_M User rank is Corporal (100 - 500 Reputation Level)Matt_M User rank is Corporal (100 - 500 Reputation Level)Matt_M User rank is Corporal (100 - 500 Reputation Level) 
Time spent in forums: 1 Day 8 h 12 m 25 sec
Reputation Power: 7
Send a message via AIM to Matt_M Send a message via Yahoo to Matt_M
Hi,
nope, the others don't take Yahoo's index.

Reply With Quote
  #3  
Old April 23rd, 2005, 02:22 PM
avitar.net's Avatar
avitar.net avitar.net is offline
'seasoned' OR 'flavor' text?
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Location: USA::CA::LA
Posts: 154 avitar.net User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 h 25 m 30 sec
Reputation Power: 5
Send a message via AIM to avitar.net
yahoo isn't considered reputable by many others since it is a pay-per-rank search engine.

that is why they have been losing so much money over the last few years - no one wants to see the highest ranked advertisement.

the good news is after over a decade of doing this they are changing their affilate programs soon.

look into apache-rewrite to turn those dynamic pages into seemingly static ones to search engine spiders.
__________________
Visit my site Avitar.net for great Atricles on Project Managment, Web Development, and System Administration.

Reply With Quote
  #4  
Old April 23rd, 2005, 03:09 PM
haid's Avatar
haid haid is offline
<-- me, in the negative
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Location: /etc/php.ini
Posts: 471 haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 15 h 57 m 27 sec
Reputation Power: 54
Send a message via AIM to haid Send a message via MSN to haid
i've done something like this already, except not using apache. i used PHP instead.

games.php?name=cool game becomes games.php/cool game

i've read the apache rewrite manuals and all that, and it just hasn't worked for me.

anyway, is this way just as good as having each game have its own physical file?

thanks.

Reply With Quote
  #5  
Old April 23rd, 2005, 03:24 PM
avitar.net's Avatar
avitar.net avitar.net is offline
'seasoned' OR 'flavor' text?
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Location: USA::CA::LA
Posts: 154 avitar.net User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 h 25 m 30 sec
Reputation Power: 5
Send a message via AIM to avitar.net
I would say yes.

Don't forget though if you put each in a seperate file you can get additional keywords benifits. I have used both on my site and saw that:

ie.

http://avitar.net/articles.php?topic=sys-admin&title=best-practices

can become either:

http://avitar.net/articles/topic,sys-admin/title,best-practices/
or:
http://avitar.net/articles/topic-sys-admin-title-best-practices.php

I went with the first one since it was easier to keep track of for myself however either is liked by search engines from the 500+ sites i have optimized. It is just a personal preference.

Things started to get weird to keep track of since I eliminated all my pages and do everything in a database (which is 20 times faster then serving individual dynamic pages) but again it is just all preference.

SEO chat has a good article on optimizing with mod rewrite so you might want to take a gander if you need a refresher on the subject.

Reply With Quote
  #6  
Old April 23rd, 2005, 03:38 PM
haid's Avatar
haid haid is offline
<-- me, in the negative
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jan 2005
Location: /etc/php.ini
Posts: 471 haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level)haid User rank is Second Lieutenant (5000 - 10000 Reputation Level) 
Time spent in forums: 1 Week 15 h 57 m 27 sec
Reputation Power: 54
Send a message via AIM to haid Send a message via MSN to haid
thanks. i get the benefit of additional keywords from a way i found pretty cool.

in games.php, i can have the game name set to a variable called $name, and on games.php, i call the following:

show_header("Games - $name", "$name game, $name, play $name free, play $name");

where the first argument is the page title, and it adds the second arguement to the meta tags, because its in the header. its worked pretty well, i've found it pretty useful.

i do games/Cool Game and then in games.php i have the file assume whatever is after that slash is the name of the game, because nothing else will ever follow that slash. that way, i dont have to do games/name, Cool Game

it's worked pretty well, except for GOOGLE not indexing it.

anyway, thanks for your help. i will try one more time with mod_rewrite.

thanks again.

Reply With Quote
  #7  
Old April 24th, 2005, 06:11 AM
guide1981 guide1981 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Jul 2004
Posts: 126 guide1981 Negative: is most likely a SPAMMER and a traitor to the cause. 
Time spent in forums: 1 Day 6 h 29 m 35 sec
Reputation Power: 0
Arrow

According2me, Google indexing is much more easier than Yahoo!
U got Yahoo! consider u, congragulations But Google is most popular search engine. Check keyword-density on ur Web pages ( plus 404, -n- redirect errors ) , -n- re-submit2Google.

Making Web pages static using PHP or mod_rewrite is !much a difference, but using Apache mod_rewrite is far straight-forward, concise, -n- elegant. U should know regular expressions first ( Apache as well as PHP uses PCRE; visit pcre, perldoc, perl Web sites ).

U may also use PHP sockets plus file-system functions2create a static cache ( .html ) for ur dynamic Web pages; but it'll b better2use Zend Optimizer 4such work; c their Web site.

Lastly, u may consider4 link-building -n- may check ur robots.txt if it did wrong.

Reply With Quote
  #8  
Old April 26th, 2005, 01:52 PM
avitar.net's Avatar
avitar.net avitar.net is offline
'seasoned' OR 'flavor' text?
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Nov 2003
Location: USA::CA::LA
Posts: 154 avitar.net User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 9 h 25 m 30 sec
Reputation Power: 5
Send a message via AIM to avitar.net
Quote:
Originally Posted by phizzlecom
it's worked pretty well, except for GOOGLE not indexing it.


How can you say that? It takes several weeks before you will see any changes from your optimization. Have you even seen the google bot in your server logs? From my experiance they may visit 4-5 times over 1-2 months before accepting your redesign and adjusting your rank.

Reply With Quote
Reply

Viewing: Dev Shed ForumsWeb DesignSearch Engine Optimization > dynamic links


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway