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 11-25-2005, 03:25 PM
WebProWorld New Member
 
Join Date: Nov 2005
Posts: 5
blueharvest RepRank 0
Default Should I use a permanent redirect?

heres the problem..

When people type in my website address I want them to go to www.mysite.com/catalog/ rather than www.mysite.com/index.htm, should i set up a .htaccess for a permanent redirect or have an index.htm and have the visitor 'click here to enter' which is best from a SEO point of view? Will the spiders know where to look?

Thanks for your help.
Reply With Quote
  #2 (permalink)  
Old 11-28-2005, 12:59 PM
WebProWorld 1,000+ Club
 
Join Date: May 2004
Location: Dallas, Texas USA
Posts: 1,492
bhartzer RepRank 1
Default

The first thing you should do is see if you can modify your http.conf file (if you're using a Unix web server) to change the default home page of your site. If you're using a Windows server, you'll need to set that page as the home page of your site (I believe you do that in the Admin section).

If you cannot change the default home page of your site on your web server, then you need to set up a 301 Permanent redirect from your home page to the catalog page.
__________________
Bill Hartzer's Blog
Reply With Quote
  #3 (permalink)  
Old 11-28-2005, 05:32 PM
Jerry's Avatar
WebProWorld Pro
 
Join Date: Nov 2003
Location: Northern Texas
Posts: 254
Jerry RepRank 0
Default

I've honestly seen both methods work well, but if you have the opportunity, I'd follow the advice given above.

On my asp driven sites, I set up a permanent redirect on the default page when it's not possible to have the server configuration changed. I've found that these sites ranked just as well in the Se's as sites that have the default page changed in the configuration settings.
Reply With Quote
  #4 (permalink)  
Old 11-28-2005, 06:23 PM
DrTandem1's Avatar
WebProWorld 1,000+ Club
 
Join Date: Oct 2003
Location: Encinitas, CA
Posts: 1,830
DrTandem1 RepRank 2
Default

Maybe I'm missing something here. Since you want the visitor to go to a subsequent file in the catalog directory rather than your index file of the same site, why are you redirecting? Why not just delete the current index file and move the catalog directory's content into its place?
__________________
DrTandem's San Diego Web Page Design, drtandem.com
Reply With Quote
  #5 (permalink)  
Old 11-29-2005, 12:40 AM
WebProWorld Member
 
Join Date: Nov 2005
Posts: 41
seolearner RepRank 0
Default A query

I wanted to ask all you people here that you mean to say that a redirected site makes no difference now and is picked by the spiders easily now. dont the google bots create any mess..i mean problem related to it now??
Reply With Quote
  #6 (permalink)  
Old 11-29-2005, 01:47 AM
DrTandem1's Avatar
WebProWorld 1,000+ Club
 
Join Date: Oct 2003
Location: Encinitas, CA
Posts: 1,830
DrTandem1 RepRank 2
Default Re: A query

Quote:
Originally Posted by seolearner
I wanted to ask all you people here that you mean to say that a redirected site makes no difference now and is picked by the spiders easily now. dont the google bots create any mess..i mean problem related to it now??
Not exactly. The point of a 301 (permanent) redirect is to clearly state to the search engines that the old URL is no longer to be followed and is being replaced by the URL to which it is redirecting.

In other words, there is not much point in placing a permanent redirect away from an URL that you want to continue to use. As an index file (i.e. index.html) of a site in the main directory is the logical target of most traffic to a domain, I wouldn't recommend redirecting traffic away from it to an interior page in the same site.

It would be more logical to simply change the content of the original index.html to whatever content is on the subsequent page and then place a redirect from that subsequent page (in this example a page in the /catalog/ directory) to the index.html.

Unless you are changing domains, I can't think of a reason why you would want to direct traffic away from your domain's main file to an interior file of the same domain.
__________________
DrTandem's San Diego Web Page Design, drtandem.com
Reply With Quote
  #7 (permalink)  
Old 11-29-2005, 04:44 AM
WebProWorld Member
 
Join Date: Nov 2005
Posts: 41
seolearner RepRank 0
Default Re: A query

Quote:
Originally Posted by DrTandem1
Quote:
Originally Posted by seolearner
I wanted to ask all you people here that you mean to say that a redirected site makes no difference now and is picked by the spiders easily now. dont the google bots create any mess..i mean problem related to it now??
Not exactly. The point of a 301 (permanent) redirect is to clearly state to the search engines that the old URL is no longer to be followed and is being replaced by the URL to which it is redirecting.

In other words, there is not much point in placing a permanent redirect away from an URL that you want to continue to use. As an index file (i.e. index.html) of a site in the main directory is the logical target of most traffic to a domain, I wouldn't recommend redirecting traffic away from it to an interior page in the same site.

It would be more logical to simply change the content of the original index.html to whatever content is on the subsequent page and then place a redirect from that subsequent page (in this example a page in the /catalog/ directory) to the index.html.

Unless you are changing domains, I can't think of a reason why you would want to direct traffic away from your domain's main file to an interior file of the same domain.
Well..thanks.I understood a bit not wholly!!Correct me if i am wrong you mean to say that if we are changing a the domain of the site then only we should redirect otherwise there is no reasons or say 'logic' for a Redirect.
Reply With Quote
  #8 (permalink)  
Old 11-29-2005, 10:14 AM
WebProWorld Pro
 
Join Date: Dec 2003
Location: Raymond, NH, USA
Posts: 126
mawells RepRank 0
Default Redirecting to same domain

I'm not saying that you should redirect within a domain, but I wanted to illustrate an instance when you might need to have something like this done.

Case in point: I have a Cold Fusion site that is hosted at a shared hosting company (very inexpensive). However, the home page is located in the cgi-bin - the only executable directory. Since this is discounted hosting, getting the default home page changed is not an option. I didn't use a redirect to solve the problem, however. I simply created a one-window frame with the target page cgi-bin/index.cfm.

To accommodate the search engines, I put a site map in the <noframes> tags and they seem to have all of the pages just fine.
__________________
MAWells
www.web-kare.com
Reply With Quote
  #9 (permalink)  
Old 11-29-2005, 10:16 AM
DrTandem1's Avatar
WebProWorld 1,000+ Club
 
Join Date: Oct 2003
Location: Encinitas, CA
Posts: 1,830
DrTandem1 RepRank 2
Default Re: A query

Quote:
Originally Posted by seolearner
Well..thanks.I understood a bit not wholly!!Correct me if i am wrong you mean to say that if we are changing a the domain of the site then only we should redirect otherwise there is no reasons or say 'logic' for a Redirect.
No, a 301 redirect is any time you want to move traffic away permanently from a URL.

Example 1:

You have a domain called mydomain.com, but for some reason you want to use mydomain2.com. You do not want to lose the traffic you have received from mydomain.com. So, rather than just deleting or abandoning it, you place a 301 redirect that moves the visitor (and search engines) to mydomain2.com.

Example 2:

You are redesigning your site and are changing and/or deleting some pages and directories. You have a page at mydomain.com/widgets.htm. You have a new page called mydomain.com/better-widgets.htm. As links and bookmarks may have been established pointing to widgets.htm, you do not want to lose this traffic. Also, no one (including the search engines) know about better-widgets.htm. You place a 301 redirect that moves anyone going to widgets.htm to better-widgets.htm.

In example 2, you would probably better off just changing the content on the original page, but that was just a simplified example. In reality, you may be creating a lot of new pages that have nothing to do with "widgets" while you are going to stop offering widgets altogether. So, new page names are in order to keep your design task easier to manage.

In summary, I just don't see any advantage to moving traffic away from your index.html file to an interior page in another directory on the same site. In all, when it's possible (practical), I think it's better to change content than redirect URLs.
__________________
DrTandem's San Diego Web Page Design, drtandem.com
Reply With Quote
  #10 (permalink)  
Old 11-29-2005, 04:07 PM
WebProWorld MVP
WebProWorld MVP
 
Join Date: Jul 2004
Location: Omaha
Posts: 2,714
brian.mark RepRank 3brian.mark RepRank 3
Default Re: Redirecting to same domain

Quote:
Originally Posted by mawells
I'm not saying that you should redirect within a domain, but I wanted to illustrate an instance when you might need to have something like this done.

Case in point: I have a Cold Fusion site that is hosted at a shared hosting company (very inexpensive). However, the home page is located in the cgi-bin - the only executable directory. Since this is discounted hosting, getting the default home page changed is not an option. I didn't use a redirect to solve the problem, however. I simply created a one-window frame with the target page cgi-bin/index.cfm.

To accommodate the search engines, I put a site map in the <noframes> tags and they seem to have all of the pages just fine.
This is bordering on black hat. Any time you're giving the engines something different than visitors (a sitemap vs. the real page), be it through frames or cloaking, that's getting dark.

If you can use SSI, you could create an index file that includes your script. That's another option. A redirect isn't out of the question either, though. Shouldn't be too hard to throw into a .htaccess file.

Brian.
__________________
ToolBarn.com, an Internet Retailer Top 500 and Inc. 500 Company | Tool Parts | Pet Supplies
Reply With Quote
  #11 (permalink)  
Old 11-29-2005, 04:14 PM
WebProWorld Pro
 
Join Date: Dec 2003
Location: Raymond, NH, USA
Posts: 126
mawells RepRank 0
Default SSI not an option...

Without getting into a pissing match... SSI is not an option. I could use the <CFINCLUDE> tag but the page using the tag would have to reside inside the cgi-bin because it would be a .cfm page.

I agree with DRTandem1 - a 301 redirect would not be appropriate.

As far as "black hat" - Given that Google has it's Sitemap program which feeds it content that the site visitor does not see... I would hardly consider a site map in the <noframes> tag "black hat" or even "dark."
__________________
MAWells
www.web-kare.com
Reply With Quote
  #12 (permalink)  
Old 11-29-2005, 04:20 PM
WebProWorld MVP
WebProWorld MVP
 
Join Date: Jul 2004
Location: Omaha
Posts: 2,714
brian.mark RepRank 3brian.mark RepRank 3
Default Why no 301?

I am not following why a redirect isn't appropriate. Ever heard of a little site called "Amazon"? Their homepage does a 301 redirect and it hasn't harmed them much. Many sites do this. There are many cases where that's a best practice.

Brian.
__________________
ToolBarn.com, an Internet Retailer Top 500 and Inc. 500 Company | Tool Parts | Pet Supplies
Reply With Quote
  #13 (permalink)  
Old 11-29-2005, 04:35 PM
WebProWorld Pro
 
Join Date: Dec 2003
Location: Raymond, NH, USA
Posts: 126
mawells RepRank 0
Default Amazon.com and 301 redirects

Amazon.com uses a 301 redirect for a very specific purpose - it allows them to build a new site in a different directory, then simply redirect their home page when it's complete - which then allows them to redesign the previous site, etc., etc.

The original question in this forum had nothing to do with creating "seasonal sites" and could probably be handled as DrTandem1 explained - simply move the files to the root directory.

I was just trying to give an example where moving files to the root directory is not an option and a 301 redirect or a frame MAY need to be used - assuming that SSL is not an option, re-configuring your server is not an option, etc.
__________________
MAWells
www.web-kare.com
Reply With Quote
  #14 (permalink)  
Old 11-30-2005, 12:25 AM
WebProWorld Member
 
Join Date: Nov 2005
Posts: 41
seolearner RepRank 0
Default

Hey,Hey,hey!!Now here is the proper HOT HOT debate going on, on the redirection concept.
DrTandem1,Brian says that it not bad.
mawells does not agree with the fact, he says that,a site can go without it.
One fact that i also dont agree (of mawells's)is about using <no frame> and creating a site map particularly for search engines.
Reply With Quote
  #15 (permalink)  
Old 11-30-2005, 12:36 AM
DrTandem1's Avatar
WebProWorld 1,000+ Club
 
Join Date: Oct 2003
Location: Encinitas, CA
Posts: 1,830
DrTandem1 RepRank 2
Default

Let me crystallize my position.

I think if you are going to redirect a page or site, a 301 redirect is the way to go for both the search engines and the human visitors. That being said, I think it is best to avoid redirects whenever practical.
__________________
DrTandem's San Diego Web Page Design, drtandem.com
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:28 AM.



Search Engine Optimization by vBSEO 3.3.0