iEntry 10th Anniversary Forum Rules Search
WebProWorld
Register FAQ Calendar Mark Forums Read
Search Engine Optimization Forum SEO is much easier with help from peers and experts! The WebProWorld SEO forum is for the discussion and exploration of various search engine optimization topics. Any non (engine) specific SEO or SEM topics should go here.

Share Thread: & Tags

Share Thread:

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-14-2006, 04:23 PM
WebProWorld Pro
 
Join Date: Aug 2006
Location: Cary, Illinois
Posts: 265
getmea RepRank 1
Default Changing Home page from HTML to PHP - Redirect question

Hi...I apologize if this topic has already come up; I could not find the EXACT condition I am facing.

I'd like to change my home page from a standard HTML to a PHP. (I am not changing domain names). In order to not disturb other sites linking to me, I'd like to change my existing index.html to only redirect to the new index.php page.

Which is the best and safest way to do this without having Google/Yahoo/MSN think my old page has disappeared (and subsequently be placed in the big sandbox in the sky)? I ONLY have a PR 2; I don't
want to lose that!

Thanks!
Reply With Quote
  #2 (permalink)  
Old 08-14-2006, 04:40 PM
WebProWorld Member
 
Join Date: Jul 2003
Location: Boston, MA
Posts: 48
Adamwlad RepRank 0
Default

I don't know if this will affect your rankings but you can use JavaScript in your HTML page to send users to your PHP page.

Code:
<SCRIPT LANGUAGE="JavaScript">
<!--
window.location="http://www.yourdomain.com/";
// -->
</script>
Anyone know if this will affect the ranking?
__________________
Adam, President of Adam's Web Company
http://www.adamswebcompany.com
Reply With Quote
  #3 (permalink)  
Old 08-14-2006, 06:33 PM
WebProWorld Pro
 
Join Date: Aug 2006
Location: Cary, Illinois
Posts: 265
getmea RepRank 1
Default

Adamwlad:

I did some more checking and found an html version as well as your javascript example. The only problem I read was the redirect won't work if the user does not have javascript enabled. The information I found made no mention of the effects on Google/Yahoo/MSN...
Reply With Quote
  #4 (permalink)  
Old 08-14-2006, 08:11 PM
TrafficProducer's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jul 2003
Location: United Kingdom
Posts: 1,643
TrafficProducer RepRank 4TrafficProducer RepRank 4TrafficProducer RepRank 4
Default change my home page from a standard HTML to a PHP.

Quote:
Change my home page from a standard HTML to a PHP.
Why?? For more dynamic!!

You can embed dynamic PHP within a HTML, (.html) page

Using code similar to this: -

Code:
<?php
 include("http://www.comparebargains.com/search.php?keywords=software&call_from_html_page=1");
?>
The page could also have HTML code in it.

If done correctly the search engines, and users, will not see any differences except that the .HTML page will be more dynamic.
Reply With Quote
  #5 (permalink)  
Old 08-14-2006, 08:13 PM
WebProWorld Pro
 
Join Date: Feb 2004
Location: Stupid question. At my PC.
Posts: 134
TechEvangelist RepRank 1
Default

I strongly advise against using a JavaScript redirect. Using a JavaScript redirect can be a kiss of death with Google. It resembles a JavaScript cloaking technique used by a Las Vegas SEO company a few years ago. Google banned all of the company's clients' sites that used this technique.

Also, most search engines cannot follow JavaScript redirects. It's the same issue with most JavaScript menu systems.

The real question is, why do you want to change from HTML to PHP? If you just want to change from a static page site to a dynamic site, and you are on an Apache server that allows you to use the .htaccess file, you can add a command to the file that will execute HTML pages as if they were PHP scripts.

Just add the following to the .htaccess file found in the root directory.

AddType application/x-httpd-php .html

You can then leave the .html extensions on your Web pages and not risk starting over with the search engines. This sends an .html page through the PHP parser and executes the code just like if it was a PHP script.

There are other alternatives, but this is probably the simplest way to do it. I assume you are talking about turning more than just the home page into a PHP script.

If you just want to use a PHP script for the home page only, you could change all of the links within the site to an absolute link that does not use the home page file name.

http://www.mydomainname.com/

If a search engine does not find a link such as index.php or index.html, it lets the server use the default page and the recognized home page URL becomes http://www.mydomainname.com/.

You do not need to add index.html or index.php to a home page URL. Hope this helps.
__________________
Facts are meaningless. They can be used to prove anything. - Homer Simpson
MySQL Cheatsheet :: Arizona SEO training
Reply With Quote
  #6 (permalink)  
Old 08-14-2006, 08:53 PM
Orion's Avatar
WebProWorld Veteran
WebProWorld MVP
 
Join Date: Sep 2003
Location: Halton Hills, ON
Posts: 702
Orion RepRank 4Orion RepRank 4Orion RepRank 4Orion RepRank 4
Default

The proper way is using the .htaccess.

Rather than instructing it to parse .htm as .php you can redirect it for the search engines as well as site visitors and existing links using the 301 redirect.

Here's the code:

redirect 301 /index.html http://www.domainname.com/index.php
Reply With Quote
  #7 (permalink)  
Old 08-14-2006, 08:54 PM
Skywoolf's Avatar
WebProWorld Member
 
Join Date: Aug 2005
Location: Hong Kong & Philippines
Posts: 59
Skywoolf RepRank 0
Default

It might be a primitive method but I have done this a few times.

If you only want to change the home page just create a duplicate of your home page and change the extension to .php then ensure links on you sites go to index.php not index.html.

Change the header of index.html to include a refresh/redirect to index.php

If you are using Cpanel you probably have the server redirects option so instead of changing the header of index.html you can simply set up a redirect on the server to redirct index.html traffic to index.php
Reply With Quote
  #8 (permalink)  
Old 08-14-2006, 10:13 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default

This is the way I do it. I put these two lines in my .htaccess file:

Code:
AddType application/x-httpd-php htm html php 
AddHandler application/x-httpd-php .htm .html
Then I simply change the extension on my index.php to index.html or whatever it was originally. This allows the server to parse php on any page regardless of whether its file extension is htm, html, or php. So you don't have to rename your index page in order to use php, nor do you have to redirect. Clean and simple.

Oh, and I might add that if you decide to add php includes on other pages you won't need to worry about changing any of the page name/file extensions, they'll all work. So it's not an index page fix, it's a sitewide fix.
Reply With Quote
  #9 (permalink)  
Old 08-14-2006, 10:31 PM
WebProWorld Pro
 
Join Date: Aug 2006
Location: Cary, Illinois
Posts: 265
getmea RepRank 1
Default

WOW! A lot of great responses! All my sub-pages are already .php but did not think in the beginning I would ever need mysql on my home page. I recently had bad reviews on my home page (my very-first web site) and wanted to brighten it up with new products, featured products, etc. And by also adding randomizing code, I would have zero maintenance.

My biggest fear was to tamper with my already-low PR with Google.

Based on the great comments, it appears the .htaccess file method is the way to go. (I assume this file already exists on my root directory?)

Thank you ALL very much for your help!

JR-getmea
Reply With Quote
  #10 (permalink)  
Old 08-14-2006, 10:42 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default

If there is no .htaccess file you can simply create one in your cpanel filemanager or use notepad and upload it. Some webhosts make you use the filemanager in cpanel (or plesk) to upload the .htaccess file for security reasons instead of allowing ftp of it, so if you find you can't ftp it, try the filemanager for your webhosting.
Reply With Quote
  #11 (permalink)  
Old 08-14-2006, 11:06 PM
WebProWorld Member
 
Join Date: Jul 2006
Location: Oakland, CA
Posts: 45
holyhttp RepRank 0
Default changing from html to php

As a web developer and search engine marketer, my take on this issue is this.
- you run the risk of loosing your PR and will have to start all over
- or run the risk of your PHP page being considered as just a duplicate of your former html page
- the use of the htaccess command RewriteRule ^yourfilename.php$ yourfilename.html should solve the problem.
What will happen in a few months or years later if you decide to change the server-side programming language, say from PHP to ColdFusion or ASP?
Would you have to change your file extensions from .php to .cfm or .asp?
If your server allow you to ahve an htaccess file the use it without even having to need a redirect 301
On the other hand if your web host does not permit the use of the htaccess file, then take your business elsewhere.

Hope this modest contribution will be useful to ALL.
__________________
Please read the Forum Rules about signature links.
Reply With Quote
  #12 (permalink)  
Old 08-14-2006, 11:17 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default

Quote:
What will happen in a few months or years later if you decide to change the server-side programming language, say from PHP to ColdFusing or ASP?
Would you have to change your file extensions from .php to .cfm or .asp?
I should think it would be the other way around, holyhttp. :)
Reply With Quote
  #13 (permalink)  
Old 08-14-2006, 11:55 PM
WebProWorld Member
 
Join Date: Jul 2006
Location: Oakland, CA
Posts: 45
holyhttp RepRank 0
Default html to php

Qote:
I should think it would be the other way around, holyhttp. :)

Thanks for your input bj.
The original question was migrating from static page html to php hence changing the file extension from html to php. Following the same logic say, now going from php to asp would be to change the old extension to the new one. Isn't it?

Using html extensions thanks to the htaccess now allows us to make the file naming independent of the server-side programming language used.

Oh well, thanks ALL for your great contribution. I have been a spectator for quite a while and now decide to get really involved and share my insights.
__________________
Please read the Forum Rules about signature links.
Reply With Quote
  #14 (permalink)  
Old 08-15-2006, 04:04 AM
Banned
 
Join Date: Jul 2006
Location: International
Posts: 55
mnsandy RepRank 0
Default

It's totaly stupid you use (and many more as well) index.html in their linking!!!


http://www.domain.com is all you need! No http://www.domain.com/index.html

it's so stupid, you literally create 2 duplicate pages

http://www.domain.com/index.html
http://www.domain.com/

as they display the same result.

Simply always use: http://www.domain.com/ and you will be fine - be it asp, php, whatever:)
Reply With Quote
  #15 (permalink)  
Old 08-15-2006, 05:01 AM
WebProWorld Member
 
Join Date: Nov 2005
Posts: 96
danners02 RepRank 0
Default .ht acesss

TechEvangelist and BJ are correct - use the .htaccess file to tell your server to process php within .htm/.html files - no need for any change of URLs.
Reply With Quote
  #16 (permalink)  
Old 08-15-2006, 06:58 AM
WebProWorld Veteran
 
Join Date: Jul 2003
Location: Spain
Posts: 343
computergenius RepRank 1
Default

Quote:
Originally Posted by Skywoolf
It might be a primitive method but I have done this a few times.

If you only want to change the home page just create a duplicate of your home page and change the extension to .php
Right on the button. Even if you don't have any PHP in the HTML page, then .php extensions will work. You lose a squillionth of a second whilst the server looks for any php in the page, and in the real world, it will be unnoticable.

Quote:
Originally Posted by Skywoolf
then ensure links on you sites go to index.php not index.html.
Not happy about this, there are some who thing that that link to MydomainDotCom/index.whatever leads to duplicate content concerns, and also PR split. I always try to have internal links to the home page going to MydomainDotCom/ - the trailing slash is a plus, it will work without it, but slightly more slowly.

Quote:
Originally Posted by Skywoolf
Change the header of index.html to include a refresh/redirect to index.php
I would have thought that most of the useful links to this page are from other sites, and not your own site. How many people actually put MydomainDotCom/index.html in their links to you? It's more usually simply MydomainDotCom. So all you need to do is rename index.html to index.php
__________________
Pete Clark
Got any spare time? Anything you need? Barter in Spain at http://BarterWithBart.com
Reply With Quote
  #17 (permalink)  
Old 08-15-2006, 10:52 AM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default

Quote:
It's totaly stupid you use (and many more as well) index.html in their linking!!!


http://www.domain.com is all you need! No http://www.domain.com/index.html

it's so stupid, you literally create 2 duplicate pages

http://www.domain.com/index.html
http://www.domain.com/

as they display the same result.

Simply always use: http://www.domain.com/ and you will be fine - be it asp, php, whatever:)
Okay, mnsandy, this is what I want you to do, and we'll see if it has an effect or not. Change your homepage file extension the way you just (ill) advised getmea to do. And don't do anything else since you said you always link to your domain without using the filename. In a week or two take a look at your stats, then report back and let us know what happened . . .

I think if you do that you won't ever give that advice again.
Reply With Quote
  #18 (permalink)  
Old 08-15-2006, 11:02 AM
WebProWorld Member
 
Join Date: Jul 2003
Location: Boston, MA
Posts: 48
Adamwlad RepRank 0
Default

anyone know if Google will ban your site from their results if you use the META tag redirect?
__________________
Adam, President of Adam's Web Company
http://www.adamswebcompany.com
Reply With Quote
  #19 (permalink)  
Old 08-15-2006, 01:01 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

Quote:
Originally Posted by Adamwlad
anyone know if Google will ban your site from their results if you use the META tag redirect?
Who knows if they will demote you or not for sure, but I know not to use one and I will tell everyone in this forum not to use one becuase they are frowned upon by the SE's.
Reply With Quote
  #20 (permalink)  
Old 08-15-2006, 01:04 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

Quote:
Originally Posted by getmea
WOW! A lot of great responses! All my sub-pages are already .php but did not think in the beginning I would ever need mysql on my home page. I recently had bad reviews on my home page (my very-first web site) and wanted to brighten it up with new products, featured products, etc. And by also adding randomizing code, I would have zero maintenance.

My biggest fear was to tamper with my already-low PR with Google.

Based on the great comments, it appears the .htaccess file method is the way to go. (I assume this file already exists on my root directory?)

Thank you ALL very much for your help!

JR-getmea
So your sub-pages don't need changed and either does your home page. The search engine sees your home page as www.domain.com not www.domain.com/index.html as mnsandy pointed out. If you are pointing internal links on your website to your home page using a relative link like /index.html then stop doing that and send them to www.domain.com. You should be bale to change your default server doc anytime without PR changes, rankings drops, etc.
Reply With Quote
  #21 (permalink)  
Old 08-15-2006, 01:12 PM
WebProWorld Veteran
 
Join Date: Jul 2003
Location: Spain
Posts: 343
computergenius RepRank 1
Default

Quote:
Originally Posted by bj
Okay, mnsandy, this is what I want you to do, and we'll see if it has an effect or not. Change your homepage file extension the way you just (ill) advised getmea to do. In a week or two take a look at your stats, then report back and let us know what happened . . .
If we promise not to tell mnsandy what you say, can you tell us why you think this is wrong?

It's what I sugggested, and what increddy suggested as well, I would be interested to know why you think that it is wrong.
__________________
Pete Clark
Got any spare time? Anything you need? Barter in Spain at http://BarterWithBart.com
Reply With Quote
  #22 (permalink)  
Old 08-15-2006, 01:24 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

Maybe BJ was thinking as I was. If your internal links are relative and point to this server default doc then you could have issues if you go and change this file name or extension.
Reply With Quote
  #23 (permalink)  
Old 08-15-2006, 09:32 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default

No, Jaan, that is NOT it at all. I had at one point done just what getmea is doing-- I added a php include on my index page and changed the extension and thought it would be fine.

IT WASN'T.

My traffic plummeted, and I was out of google.

They DO index you by your filename, whether it says so or not. A friend instituted this fix for me, the one I suggested above, I put the file extension back to the original, and within a week all was right in my world again.

So you can all believe what you will, but I know from experience.
Reply With Quote
  #24 (permalink)  
Old 08-15-2006, 11:30 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

BJ I agree if the website has been set up using a relative link to the home then yes they will index your home page by file name. I said that above already. Of course if you are doing this you should stop and fix this problem like I said. The SE should not know about your server default doc for your home page at all. If so your internal linking is not correct and it should be fixed.

Now if they don't know about the server default doc for the home page changing its name and extensions should not make a difference. Obviously this is not true for everyone because many website incorrectly link to the home page in relative format.

Sorry for the confusion this is all I was saying.
Reply With Quote
  #25 (permalink)  
Old 08-15-2006, 11:36 PM
bj's Avatar
bj bj is offline
WebProWorld 1,000+ Club
 
Join Date: Apr 2005
Location: Delaware Valley, PA
Posts: 1,172
bj RepRank 3bj RepRank 3
Default

Jaan, maybe you should try to change your homepage extension and see what happens . . .
Reply With Quote
  #26 (permalink)  
Old 08-15-2006, 11:50 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

Google has not indexed my home page, they have indexed my domain name only because I am linking to the domain name not /index.html

http://www.google.com/search?hl=en&l...tm&btnG=Search

http://www.google.com/search?hl=en&l...om&btnG=Search

If I changed my home page extension it would not make a difference.

Can you please show me evidence of " They DO index you by your filename, whether it says so or not." to back up this statement from a website that is using correct home page linking to the root domain and not the relative server default document?
Reply With Quote
  #27 (permalink)  
Old 08-15-2006, 11:52 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

Also who cares, this argument is dumb, if you do change your home page because you need to use a include or something like that just use a 301 redirect from the old page to the new and you will be fine.
Reply With Quote
  #28 (permalink)  
Old 08-16-2006, 12:06 AM
WebProWorld Pro
 
Join Date: Feb 2004
Location: Stupid question. At my PC.
Posts: 134
TechEvangelist RepRank 1
Default

Wow! Such a simple issue generated so many opinions.
Quote:
They DO index you by your filename, whether it says so or not. A friend instituted this fix for me, the one I suggested above, I put the file extension back to the original, and within a week all was right in my world again.
BJ, this only applies if a search engine finds a link with the file name. A search engine will never register the file name in its index if it does not find it in a link. I've been removing all links that include the home page file name for several years and they always dissapear from the search engine indexes.

Given that all of the internal links in this site are already PHP, the simplest solution is to just to remove all link references to the home page file name itself. This concentrates all external and internal links on a single version of the home page URL. In this case, the page could just be renamed to index.php, or the addition to the .htaccess file could be used so that the current HTML home page is parsed as PHP.

The 301 redirect will also work, but it's not needed unless you intend to use the file name in links to the home page.
__________________
Facts are meaningless. They can be used to prove anything. - Homer Simpson
MySQL Cheatsheet :: Arizona SEO training
Reply With Quote
  #29 (permalink)  
Old 08-18-2006, 12:44 AM
DrTandem1's Avatar
WebProWorld 1,000+ Club
 
Join Date: Oct 2003
Location: Encinitas, CA
Posts: 1,830
DrTandem1 RepRank 2
Default

There is a better way using the .htaccess file. Don't redirect! Simply have it treat the HTML pages as PHP:

AddType application/x-httpd-php .htm .html

Each HTML page will not have to be changed to PHP. The HTML pages will allow the PHP scripts to work.

If you change your pages from .html to .php, you will be hurt in the SERPs. There is no reason to endure that.
__________________
DrTandem's San Diego Web Page Design, drtandem.com
Reply With Quote
  #30 (permalink)  
Old 08-18-2006, 03:33 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

I agree Tandem that is also a good solution but not always available to everyone.
Reply With Quote
  #31 (permalink)  
Old 08-21-2006, 03:01 PM
WebProWorld New Member
 
Join Date: Jan 2005
Posts: 8
sweimh RepRank 0
Default

I got this from the recent SES session. I think it was the bot obedience session, when the Google rep said that meta refresh of 0 seconds is treated as 301 redirect. If I remember it correctly, other SE reps there also agreed (Yahoo & ASK).
Reply With Quote
  #32 (permalink)  
Old 08-21-2006, 10:02 PM
DrTandem1's Avatar
WebProWorld 1,000+ Club
 
Join Date: Oct 2003
Location: Encinitas, CA
Posts: 1,830
DrTandem1 RepRank 2
Default

Quote:
Originally Posted by sweimh
I got this from the recent SES session. I think it was the bot obedience session, when the Google rep said that meta refresh of 0 seconds is treated as 301 redirect. If I remember it correctly, other SE reps there also agreed (Yahoo & ASK).
That may be true, but I wouldn't bother with it. I would use a 301 redirect, if I MUST redirect. I would do everything possible to avoid a redirect or change of domain name.
__________________
DrTandem's San Diego Web Page Design, drtandem.com
Reply With Quote
  #33 (permalink)  
Old 08-25-2006, 12:32 PM
WebProWorld Pro
 
Join Date: Aug 2006
Location: Cary, Illinois
Posts: 265
getmea RepRank 1
Default

So...have we decided that I should leave my home page name (index.html) as-is and also change the HTaccess file?

I will also verify all my sub-pages' back links to my home page are not using a relative address.

Thanks again...
Reply With Quote
  #34 (permalink)  
Old 08-27-2006, 02:15 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

That is what I would do, but the decision is ultimately up to you. Also please seek out as many opinions on this as possible and don't rely on one forum thread only to guide decisions like this. Remember forums help you self educate, but they shouldn't ultimately guide your business decisions.
Reply With Quote
  #35 (permalink)  
Old 09-11-2006, 07:10 PM
incrediblehelp's Avatar
WebProWorld 1,000+ Club
WebProWorld MVP
 
Join Date: Jan 2004
Location: Live in Cincy Now
Posts: 7,573
incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4incrediblehelp RepRank 4
Default

Quote:
Originally Posted by bj
Jaan, maybe you should try to change your homepage extension and see what happens . . .
Just swithced all of my pages from .html to .php
Reply With Quote
Reply

  WebProWorld > Search Engines > Search Engine Optimization Forum

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 05:25 AM.



Search Engine Optimization by vBSEO 3.3.0