Webmaster Forum


Go Back   Webmaster Forum > Marketing Forums > SEO Forum
Register FAQ Members List Calendar Search Today's Posts Mark Forums Read

SEO Forum Search engine optimization discussions.

Sponsored Reviews   Improve your ranking, submit to directories   V7N Directory

Reply
 
LinkBack Thread Tools Display Modes
Old 06-01-2007, 01:28 AM   #1 (permalink)
Contributing Member
 
tdd1984's Avatar
 
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
iTrader: 0 / 0%
tdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebody
Send a message via AIM to tdd1984 Send a message via MSN to tdd1984 Send a message via Yahoo to tdd1984
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?
tdd1984 is offline  
Add Post to del.icio.us
Reply With Quote
Sponsored Links
SEO Hosting by HostGator  Advertise Here  Buy Blog Links
Old 06-01-2007, 03:04 AM   #2 (permalink)
Inactive
 
Join Date: 12-23-06
Posts: 150
iTrader: 0 / 0%
Latest Blog:
None

zokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the rough
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.
zokiii is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-01-2007, 04:12 AM   #3 (permalink)
Contributing Member
 
tdd1984's Avatar
 
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
iTrader: 0 / 0%
tdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebody
Send a message via AIM to tdd1984 Send a message via MSN to tdd1984 Send a message via Yahoo to tdd1984
nice

Quote:
Originally Posted by zokiii View Post
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?
tdd1984 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-01-2007, 04:26 AM   #4 (permalink)
Inactive
 
Join Date: 12-23-06
Posts: 150
iTrader: 0 / 0%
Latest Blog:
None

zokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the rough
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.
zokiii is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-01-2007, 01:53 PM   #5 (permalink)
Contributing Member
 
tdd1984's Avatar
 
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
iTrader: 0 / 0%
tdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebody
Send a message via AIM to tdd1984 Send a message via MSN to tdd1984 Send a message via Yahoo to tdd1984
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?
tdd1984 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-01-2007, 05:22 PM   #6 (permalink)
Contributing Member
 
minstrel's Avatar
 
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
iTrader: 0 / 0%
minstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to behold
Quote:
Originally Posted by zokiii View Post
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]
minstrel is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-02-2007, 04:31 AM   #7 (permalink)
Inactive
 
Join Date: 12-23-06
Posts: 150
iTrader: 0 / 0%
Latest Blog:
None

zokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the rough
Quote:
Originally Posted by tdd1984 View Post
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).
zokiii is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-02-2007, 09:08 AM   #8 (permalink)
Contributing Member
 
minstrel's Avatar
 
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
iTrader: 0 / 0%
minstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to behold
Quote:
Originally Posted by zokiii View Post
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.
minstrel is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-02-2007, 09:39 AM   #9 (permalink)
Inactive
 
Join Date: 12-23-06
Posts: 150
iTrader: 0 / 0%
Latest Blog:
None

zokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the roughzokiii is a jewel in the rough
Quote:
Originally Posted by minstrel View Post
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.
zokiii is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-03-2007, 02:52 AM   #10 (permalink)
Contributing Member
 
tdd1984's Avatar
 
Join Date: 12-03-06
Location: Indiana
Posts: 1,228
iTrader: 0 / 0%
tdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebodytdd1984 is liked by somebody
Send a message via AIM to tdd1984 Send a message via MSN to tdd1984 Send a message via Yahoo to tdd1984
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.
tdd1984 is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-04-2007, 10:19 AM   #11 (permalink)
Inactive
 
Join Date: 05-12-07
Posts: 31
iTrader: 0 / 0%
Latest Blog:
None

wbguy is liked by many
Send a message via Skype™ to 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.

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
wbguy is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-04-2007, 11:27 AM   #12 (permalink)
Contributing Member
 
minstrel's Avatar
 
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
iTrader: 0 / 0%
minstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to behold
Quote:
Originally Posted by wbguy View Post
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 View Post
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 View Post
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.
minstrel is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-06-2007, 12:11 AM   #13 (permalink)
Inactive
 
Join Date: 05-12-07
Posts: 31
iTrader: 0 / 0%
Latest Blog:
None

wbguy is liked by many
Send a message via Skype™ to 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.

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 *
wbguy is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-06-2007, 05:37 AM   #14 (permalink)
Contributing Member
 
minstrel's Avatar
 
Join Date: 06-28-04
Location: Ottawa, Canada
Posts: 455
iTrader: 0 / 0%
minstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to beholdminstrel is a splendid one to behold
Quote:
Originally Posted by wbguy View Post
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 View Post
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 View Post
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.
minstrel is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-06-2007, 11:48 PM   #15 (permalink)
Inactive
 
Join Date: 05-12-07
Posts: 31
iTrader: 0 / 0%
Latest Blog:
None

wbguy is liked by many
Send a message via Skype™ to wbguy
Thanks for reminding me about the email.
wbguy is offline  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Marketing Forums > SEO Forum

Reply



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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

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

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


Sponsor Links
Get exposure! Get exposure! Find Scripts Web Hosting Directory Get exposure! SEO Blog


All times are GMT -7. The time now is 10:16 PM.
© Copyright 2008 V7 Inc