WOW!! Google search

Help out with the site! Suggestions and ideas go here.
Post Reply
User avatar
Deques
$("#Wai").stupidfy();
Posts: 1913
Joined: Thu May 18, 2006 5:39 pm
Location: Sweden

Post by Deques »

http://www.google.com/search?hl=en&q=wo ... gle+Search

check the second hit!!

Any way to get to the first hit?!
Tallon
Kimono Bird
Posts: 258
Joined: Thu Nov 30, 2006 2:55 am
Location: Texas

Post by Tallon »

WOW!!!! That is so awesome. Go us!!!! After all the years of board crahsing and bugging, our hard work has paid off. I could just cry. I would like to thank my friends, my director, my agent, and everyone else that made this dream come true.
User avatar
Dr. Sheexy
Site Admin
Posts: 3870
Joined: Sun May 21, 2006 9:49 pm
Location: Texas

Post by Dr. Sheexy »

We still gotta get up there on the searches like "Seiken Densetsu" and the other games, heh.

I wonder how we can pull that off?
User avatar
Kassidy
Site Admin
Posts: 2975
Joined: Sun May 21, 2006 10:59 pm
Location: London, UK

Post by Kassidy »

Google gives priority to words held in the TITLE tag of the main page, so putting "Mana World - Everything and more about Seiken Densetsu" or something like that would do the trick.
The J Person
Grave Bat
Posts: 446
Joined: Fri Sep 29, 2006 7:23 pm
Location: Under my hat!

Post by The J Person »

But that sounds painfully cliched... like bad grammar. The sacrifices made for progress, eh? -.<;
User avatar
Kefka
Whimper
Posts: 1004
Joined: Mon May 29, 2006 7:01 am
Location: The Netherlands

Post by Kefka »

hurray!
:D
User avatar
Kassidy
Site Admin
Posts: 2975
Joined: Sun May 21, 2006 10:59 pm
Location: London, UK

Post by Kassidy »

Yeh, it's an aide de explanation merely. ;)

And see, if ye search for the words "World" and "Mana" now, it's about 4th. That's why nowadays you've gotta end up putting most of your keywords in the title tag.
Last edited by Kassidy on Sun Dec 10, 2006 11:21 pm, edited 1 time in total.
koopa
Werewolf
Posts: 104
Joined: Sat Jan 06, 2007 5:38 pm
Location: Constance, Germany

Post by koopa »

Hmm.. why not append " - dedicated to the seiken denetsu series" to the title?

Google values the first phrases on each page very high, so the website would maybe climb higher in the google results if it would contain many keywords like "seiken denetsu" "secret of mana" "world of mana".. I don't know how other search engines handle the META-tags, but google ignores most of them :(

Maybe the admin ( who is actually the admin? ;) ) could modify the URIs from "/?content=ffa " to "/final-fantasy-adventure/ ", the last URI will appear higher in the search results if somebody searches for "final fantasy" or "final adventure" ;) , .. This can be done with ModRewrite without changing any php-code.

- http://www.workingwith.me.uk/articles/s ... od_rewrite
- http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html

The following .htaccess-example would redirect the user from "/final-fantasy-adventure" to "/index.php?content=ffa"

Code: Select all

RewriteEngine On
RewriteRule final-fantasy-adventure.*$ index.php?content=ffa
User avatar
Deques
$("#Wai").stupidfy();
Posts: 1913
Joined: Thu May 18, 2006 5:39 pm
Location: Sweden

Post by Deques »

i have tried the mod_rewrite before, but somehow the counter i made doesnt work with it perfectly. it randomly adds more hits than it should be adding. ie it adds 7 hits, next time it adds 10 hits.
i dont understand why
but hey, the rule you gave me is better than what i tried before. you know how mod_rewrite works?
maybe a lesson from is good to me :D
koopa
Werewolf
Posts: 104
Joined: Sat Jan 06, 2007 5:38 pm
Location: Constance, Germany

Post by koopa »

Yes, I know the basics, I teased myself with ModRewrite for hours :D

I can try to write a guide :) or explain it to you via Instant Messenger ( ICQ? ).
You can simply take my example if you wish ;)

Code: Select all

RewriteEngine On
RewriteRule final-fantasy-adventure.*$ /index.php?content=ffa
RewriteRule secret-of-mana.*$ /index.php?content=som
RewriteRule seiken-denetsu-3.*$ /index.php?content=sd3
RewriteRule sword-of-mana.*$ /index.php?content=swom
RewriteRule children-of-mana.*$ /index.php?content=com
hmm.. your counter adds 7 hits at once?!?!?! :o
could I have a look at the counter-script ( if it's written in PHP ).
Last edited by koopa on Sat Jan 06, 2007 7:50 pm, edited 1 time in total.
User avatar
Deques
$("#Wai").stupidfy();
Posts: 1913
Joined: Thu May 18, 2006 5:39 pm
Location: Sweden

Post by Deques »

fancy urls! finally!

the urls look like this now secret-of-mana-armor.html
koopa
Werewolf
Posts: 104
Joined: Sat Jan 06, 2007 5:38 pm
Location: Constance, Germany

Post by koopa »

Yay congrats :) The look really good ( especially with the .html ending )

:&#12358;&#12399;wwwwww: you noticed that google finds 4,280 sites when you let it search on seikens.com? :D

just enter site:seikens.com in google :D

=> http://www.google.com/search?q=site:sei ... N&filter=0
User avatar
Dr. Sheexy
Site Admin
Posts: 3870
Joined: Sun May 21, 2006 9:49 pm
Location: Texas

Post by Dr. Sheexy »

Deques wrote:fancy urls! finally!

the urls look like this now secret-of-mana-armor.html
Wow, those are really nice looking.

Am I going to have to start naming my stuff like that, or do you have a script or something that'll do it for me?

Waah, this computer is being weird. For some reason I see myself on the online list twice, and all my posts are showing up twice... but if I delete one they both go, this is weird!
koopa
Werewolf
Posts: 104
Joined: Sat Jan 06, 2007 5:38 pm
Location: Constance, Germany

Post by koopa »

hm.. which browser are you using? I think you have to use the syntax, it isn't automatically rewritten.

/index.php?content=bestiary&section=rabite

would be now:

/bestiary-rabite.html

it's like

Code: Select all

content-section.html
But you must talk to Deques, I think he needs to add all new sites to the .htaccess file.

//edit: to get it automatically managed you need to change the htaccess and the general syntax:

when using - instead of spaces which aren't allowed in urls and using - as divider for section and content, the script can't differ between them. Why not use a syntax like this:

Code: Select all

http://seikens.com/con-tent-main-site.html
http://seikens.com/con-tent-site/section.html
this script would allow to add new sites without modifying the .htaccess-file:

Code: Select all

RewriteEngine On
RewriteBase /

RewriteCond %{REQUEST_FILENAME} !/board/
RewriteCond %{REQUEST_FILENAME} !/content/
RewriteCond %{REQUEST_FILENAME} !/copper/

RewriteRule ^([-a-zA-Z0-9]*)/([-a-zA-Z0-9]*).html$ index.php?content=$1&section=$2
RewriteRule ^([-a-zA-Z0-9]*).html$ index.php?content=$1
Last edited by koopa on Sun Jan 07, 2007 5:56 pm, edited 1 time in total.
Post Reply