| SEO Forum Search engine optimization discussions. |
06-01-2007, 01:28 AM
|
#1 (permalink)
|
|
Contributing Member
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
|
301 redirect
Whats the best way to 301 redirect even my deep links like my blog posts, and etc need to have all links redirected to my new domain any one know much about this?
|
|
|
06-01-2007, 03:04 AM
|
#2 (permalink)
|
|
Inactive
Join Date: 12-23-06
Posts: 150
Latest Blog: None
|
I redirected my whole site from old to new domain with 301.
Just redirect all pages to new URLs with this code in .htaccess :
redirect 301 /news/example.php http://www.newdomain.com/nws/news/example/
This is just example for redirecting one page, you must redirect all your pages.
Even I can say that when I redirected my site, I had the same rankings in about 1 month.
|
|
|
06-01-2007, 04:12 AM
|
#3 (permalink)
|
|
Contributing Member
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
|
nice
Quote:
Originally Posted by zokiii
I redirected my whole site from old to new domain with 301.
Just redirect all pages to new URLs with this code in .htaccess :
redirect 301 /news/example.php http://www.newdomain.com/nws/news/example/
This is just example for redirecting one page, you must redirect all your pages.
Even I can say that when I redirected my site, I had the same rankings in about 1 month.
|
was you ranked for very competitive keywords? also how old was your old domain, the thing is I'm thinking a lot of my rankings is becuase I have my keywords plugged in my url, but my url sucks I'm going to have to get a url. The thing is I'll have to redirect all my blog post links to then huh?
|
|
|
06-01-2007, 04:26 AM
|
#4 (permalink)
|
|
Inactive
Join Date: 12-23-06
Posts: 150
Latest Blog: None
|
I ranked for competitive local rankings.
Example : when you type fitness on google.co.uk
My domain was old about 2 years.
Yes, try to redirect all pages with 301.
|
|
|
06-01-2007, 01:53 PM
|
#5 (permalink)
|
|
Contributing Member
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
|
cool
very cool, so i will have to keep the old domain active for everything to work right? then just place the htaccess file in the old domain root directory, and the new domain put all my files in that root?
|
|
|
06-01-2007, 05:22 PM
|
#6 (permalink)
|
|
Contributing Member
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
|
Quote:
Originally Posted by zokiii
I redirected my whole site from old to new domain with 301.
Just redirect all pages to new URLs with this code in .htaccess :
redirect 301 /news/example.php http://www.newdomain.com/nws/news/example/
This is just example for redirecting one page, you must redirect all your pages.
Even I can say that when I redirected my site, I had the same rankings in about 1 month.
|
That's great for a small number of pages but it's not the most efficient way of redirecting, though, if you have a lot of pages or a dynamic site (e.g., a forum or other PHP or ASC based site).
You're better of using a mod_rewrite solution. I'm not an expert at that by any means but it would be something along the lines of this:
Code:
Options +FollowSymLinks
RewriteEngine On
RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /news/
RewriteRule .* http://www.newdomain.com/nws/news/example/? [R=301,L]
|
|
|
06-02-2007, 04:31 AM
|
#7 (permalink)
|
|
Inactive
Join Date: 12-23-06
Posts: 150
Latest Blog: None
|
Quote:
Originally Posted by tdd1984
very cool, so i will have to keep the old domain active for everything to work right? then just place the htaccess file in the old domain root directory, and the new domain put all my files in that root?
|
Yes, you will have to keep the old domain.
You place .htaccess in the old domain root , and put the files on the new server for your new domain.
Quote:
|
That's great for a small number of pages but it's not the most efficient way of redirecting, though, if you have a lot of pages or a dynamic site (e.g., a forum or other PHP or ASC based site).
|
Yes, I talked about small sites, but if you have big sites with lot of pages you can use mod_rewrite only if you didn't change paths to your files or file names (then you must put 301 redirect for each file).
|
|
|
06-02-2007, 09:08 AM
|
#8 (permalink)
|
|
Contributing Member
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
|
Quote:
Originally Posted by zokiii
if you have big sites with lot of pages you can use mod_rewrite only if you didn't change paths to your files or file names
|
The path (directory structure) can change as long as the filenames don't change.
|
|
|
06-02-2007, 09:39 AM
|
#9 (permalink)
|
|
Inactive
Join Date: 12-23-06
Posts: 150
Latest Blog: None
|
Quote:
Originally Posted by minstrel
The path (directory structure) can change as long as the filenames don't change.
|
Cool to hear that
In the past I only redirected sites with small amount of pages.
|
|
|
06-03-2007, 02:52 AM
|
#10 (permalink)
|
|
Contributing Member
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
|
okay
okay thanks guys I just didn't know who has experience in doing this, or has done this I know several people that say they have but then again they wasn't in the top 10 keywords like website design and etc.
|
|
|
06-04-2007, 10:19 AM
|
#11 (permalink)
|
|
Inactive
Join Date: 05-12-07
Posts: 31
Latest Blog: None
|
301 Redirect is a form of cloaking.
301 Redirect is a status code definition is a part of Hypertext Transfer Protocol -- HTTP/1.1
Cloaking is a black hat SEO procedure and the reason why it’s being used is it’s fairly easy to rank up in the SEs by employing unprincipled SEO tactic. If search engines realize a cloaking website it results in complete reject of the website from the search engine index.
Althought there are some valid reasons also
When you are upgrading your site and need to sustain previous files.
You already have a website and want to use your website with your business name or keyword
You can get more information regarding this topic at
http://outsource-seo.vox.com/library...ng-in-seo.html
|
|
|
06-04-2007, 11:27 AM
|
#12 (permalink)
|
|
Contributing Member
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
|
Quote:
Originally Posted by wbguy
301 Redirect is a form of cloaking.
301 Redirect is a status code definition is a part of Hypertext Transfer Protocol -- HTTP/1.1
Cloaking is a black hat SEO procedure and the reason why it’s being used is it’s fairly easy to rank up in the SEs by employing unprincipled SEO tactic. If search engines realize a cloaking website it results in complete reject of the website from the search engine index.
|
That is absolute unmitigated utter nonsense.
Quote:
Originally Posted by wbguy
Althought there are some valid reasons also
When you are upgrading your site and need to sustain previous files.
|
If your directory or file structure or domain changes, there is no other way to inform search engines and human visitors of this fact without some form of 301 redirect.
Quote:
Originally Posted by wbguy
You already have a website and want to use your website with your business name or keyword
|
I don't know what you mean by this - THAT sounds more like deception to me.
|
|
|
06-06-2007, 12:11 AM
|
#13 (permalink)
|
|
Inactive
Join Date: 05-12-07
Posts: 31
Latest Blog: None
|
Mr Contributing Member
I have written the valid reason also and i am not misleading you.
I also know when you already have a website and want to change it the name of website to the business name you will use the 301 redirect.
You can also use 301 redirect when you have flash site. Although now days search engines are considering flash site.
But Google takes Cloaking is a black hat SEO procedure and the reason why it’s being used is it’s fairly easy to rank up in the SEs by employing unprincipled SEO tactic. If search engines realize a cloaking website it results in complete reject of the website from the search engine index.
If you use 301 redirect it depends how significantly you can use the 301 redirect HTTP1.1
Last edited by G10 : 06-06-2007 at 12:47 AM.
Reason: * Removed email address from post *
|
|
|
06-06-2007, 05:37 AM
|
#14 (permalink)
|
|
Contributing Member
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
|
Quote:
Originally Posted by wbguy
Mr Contributing Member
I have written the valid reason also and i am not misleading you.
I also know when you already have a website and want to change it the name of website to the business name you will use the 301 redirect.
You can also use 301 redirect when you have flash site. Although now days search engines are considering flash site.
|
Why would you want to do that?
Quote:
Originally Posted by wbguy
But Google takes Cloaking is a black hat SEO procedure and the reason why it’s being used is it’s fairly easy to rank up in the SEs by employing unprincipled SEO tactic. If search engines realize a cloaking website it results in complete reject of the website from the search engine index.
|
There's a difference between cloaking and 301 redirects. That's like saying "don't use email because some people use it for spamming and if Google catches you they'll ban you"..
Quote:
Originally Posted by wbguy
If you use 301 redirect it depends how significantly you can use the 301 redirect HTTP1.1
|
I'm sorry - I am assuming English is not your first language - but I don't understand what you're trying to say in this sentence.
|
|
|
06-06-2007, 11:48 PM
|
#15 (permalink)
|
|
Inactive
Join Date: 05-12-07
Posts: 31
Latest Blog: None
|
Thanks for reminding me about the email.
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
Similar Threads
|
| Thread |
Thread Starter |
Forum |
Replies |
Last Post |
| 301 redirect help!! |
offthedome |
Coding Forum |
6 |
05-27-2007 10:13 PM |
| 301 and 302 Redirect |
programmersbank |
SEO Forum |
8 |
06-09-2006 01:57 PM |
| PHP Redirect |
Pimpen 2010 |
Coding Forum |
12 |
06-14-2004 10:28 AM |
All times are GMT -7. The time now is 10:16 PM.
© Copyright 2008 V7 Inc
|