simple question would having index.php harm chances at SE ranking?
index.php harm SE ranking
Collapse
X
-
Tags: None
-
no... why would itMSN/E-Mail: [email protected] (Always online)
AIM: thnbic (Rarely online)
ICQ: 88990969 (Very rarely online) -
-
the only time php would effect page rank or serps is if you have a query in the url like a search engine or something. like this:
http://www.yourdomain.com/index.php?id=10=cat=blah
But if you're just using php to run scripts within the source code, its fine.
Comment
-
-
Those actually increase my rankings on google these daysOriginally posted by sean416the only time php would effect page rank or serps is if you have a query in the url like a search engine or something. like this:
http://www.yourdomain.com/index.php?id=10=cat=blah
But if you're just using php to run scripts within the source code, its fine.
Comment
-
I highly doubt it, willing to elaborate?Originally posted by NichePay - StuartDThose actually increase my rankings on google these days
Comment
-
Exactly right. If it has ID in the URL the robot thinks it's a session id and will not spider it.Originally posted by sean416the only time php would effect page rank or serps is if you have a query in the url like a search engine or something. like this:
http://www.yourdomain.com/index.php?id=10=cat=blah
But if you're just using php to run scripts within the source code, its fine.
This goes for cgi too.Last edited by Top Jimmy; 02-02-2005, 07:31 PM.
Don't reply. Let it die.
Comment
-
Originally posted by sean416the only time php would effect page rank or serps is if you have a query in the url like a search engine or something. like this:
http://www.yourdomain.com/index.php?id=10=cat=blah
But if you're just using php to run scripts within the source code, its fine.
Even with taht, there is a way to use modrewrite to make the pages .htmlCare about me?
Who?
Me!
Who?Comment
-
True. The key is how Google interprets it. I had an ASP-based commerce site (mainstream) a few years back with session ID's and not only did Google spider the entire site, I was ranked at/near the top for just about everything.Originally posted by Top JimmyExactly right. If it has ID in the URL the robot thinks it's a session id and will not spider it.
This goes for cgi too.
PHP pages can be indexed as can any other dynamic page. Just try to pass as few variables as possible and on the landing page keep the queries/code to a minimum. For example, if the variable passed is a customer ID and you need to match that with a DB, probably fine. Run the SELECT query and spit out the HTML. If you're running multiple queries on the page with Include files, session ID's and third-party software (like a transaction component) etc. etc. you may have issues.
Google is getting pretty good at spidering dynamic pages these days as the spider can recognize common app's (ecommerce, cms, etc.), but there are still concerns of being caught in an endless loop, for example, so it's cautious on custom-built pages.Comment


Comment