PHP - Search Engine Friendly?

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
mattlach
Forum Newbie
Posts: 1
Joined: Sun Oct 08, 2006 9:51 pm

PHP - Search Engine Friendly?

Post by mattlach »

Hi,

I am having a new website built and im wondering what language/development tool to get it built in.

A few developers have suggested i get it done in PHP.

Is PHP good for search engine rankings? As currently our website is #1 for its keywords but it just looks bad and i want to have it re-designed and re-built.

Please post your thoughts here.

Thankyou.
nickvd
DevNet Resident
Posts: 1027
Joined: Thu Mar 10, 2005 5:27 pm
Location: Southern Ontario
Contact:

Post by nickvd »

The language used to write the page (php/asp/java/cfm/ruby) has no direct impact on the search engine ranking. It's how the page itself is designed, layed out, and filled with content that matters...
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Post by alex.barylski »

I have no evidence to substantiate this claim, but neither does anyone to argue the opposite...

PHP should not have any impact on SEO...however I have read journals from so-called SEO experts, many of whom had other practical advice (which makes me take them more seriously) that HTML does indeed rank higher in search engines, than say PHP.

Understandably this is...well...possible...for the same reason search engines historically (although not so much anymore) ranked static URL's higher than dynamic

about.html over index.php?page=about

the former still (IMHO) typically ranks higher and is likely *prefered* by search engines, just dynamic aren't as discriminated against as they once were...in that, they do get spidered...

So take caution when saying or believing that files extension doesn't make an impact...as I might suggest they do, just not as much as they once did...

Competition is all about winning, and even 0.001% more than your competitors makes you, by virtue of numbers...BETTER!!! :P
User avatar
patrikG
DevNet Master
Posts: 4235
Joined: Thu Aug 15, 2002 5:53 am
Location: Sussex, UK

Post by patrikG »

Hockey wrote:Understandably this is...well...possible...for the same reason search engines historically (although not so much anymore) ranked static URL's higher than dynamic

about.html over index.php?page=about

[...]

So take caution when saying or believing that files extension doesn't make an impact...as I might suggest they do, just not as much as they once did...
File extensions don't make a difference. You can have search-engine unfriendly URLs in any language, Python, Ruby, Java, ASP, PHP whatever. The choice does not matter in the least. The underlying architecture (not the language) of the application makes the difference.
If you want search-engine friendly URLs, look at blogs. Hard to be more search-engine friendly. A lot of blogs are using software written in PHP.
fastfingertips
Forum Contributor
Posts: 242
Joined: Sun Dec 28, 2003 1:40 am
Contact:

Post by fastfingertips »

Hm the filename has a lot of importance because there are some criterias called information relevance. One thing is to have an URL that looks like:
http://www.company.com/walkman/Sony/Walkman_12002.html or just Walkman_1200
instead of: http://www.company.com?prod=1&cat=23

This url friendly system is not a language feature, is a webserver one :).

So no matter what language you will choose try to write good html

:evil:
User avatar
pedrotuga
Forum Contributor
Posts: 249
Joined: Tue Dec 13, 2005 11:08 pm

Post by pedrotuga »

the damn spiders act like old fixed mind bastards.

unfortunatly a blog of some guy that "red about this subject while taking a <span style='color:blue' title='I&#39;m naughty, are you naughty?'>smurf</span>" gets easier indexed than a serious article about this subject. Its basicaly a mod-rewrite or similar mater. That and a lot of links basicaly to as many pages as possible ( tag clouds, recent posts, more popular, most commented, stupidest posts, etc, etc )

If you have a content based website then go all the way to mod rwrite, if not, just dont bother, that's my sugestion.

i hope someday the spiders will make some effort to distinguish between spam and serious content.
alex.barylski
DevNet Evangelist
Posts: 6267
Joined: Tue Dec 21, 2004 5:00 pm
Location: Winnipeg

Post by alex.barylski »

File extensions don't make a difference. You can have search-engine unfriendly URLs in any language, Python, Ruby, Java, ASP, PHP whatever. The choice does not matter in the least. The underlying architecture (not the language) of the application makes the difference.
If you want search-engine friendly URLs, look at blogs. Hard to be more search-engine friendly. A lot of blogs are using software written in PHP.
Meh :P
User avatar
s.dot
Tranquility In Moderation
Posts: 5001
Joined: Sun Feb 06, 2005 7:18 pm
Location: Indiana

Post by s.dot »

Set Search Time - A google chrome extension. When you search only results from the past year (or set time period) are displayed. Helps tremendously when using new technologies to avoid outdated results.
Post Reply