SlideShare uma empresa Scribd logo
1 de 15
How to create a 301 Redirect
www.gsesoftsolutions.com
A Tech Blog
Twitter: @GSESoftSolution
My Facebook Page
@gsesoftsolutions
301 Redirect
• Search Engine Friendly Method
• Change Page URLs with 301 redirects
• Permanently moved to a new location
• Can remove canonical issues(redirects to only
www.domain.com) – webmaster can also be used to
solve it
• Google understand these (www.abc.com and abc.com)
as a different URL.
• Google recommends using a 301 redirect to change the
URL of a page as it is shown in search engine results
Client Request
• GET /index.php HTTP/1.1 Host:
www.example.org
• HTTP/1.1 301 Moved Permanently Location:
http://www.example.org/index.asp
Server Response
Redirect to www using htaccess
redirect
• RewriteEngine on
rewritecond %{http_host} ^domain.com [nc]
rewriterule ^(.*)$ http://www.domain.com/$1
[r=301,nc]
Redirect Old Domain to New Domain
using 301 Redirect
• RewriteEngine on
RewriteRule (.*)
http://www.newdomain.com/$1 [R=301,L]
Ruby on Rails Redirect
• def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-domain.com/"
end
JSP (Java Server Pages) Redirect
• <%
response.setStatus(301);
response.setHeader( "Location",
"http://www.new-domain.com/" );
response.setHeader( "Connection", "close" );
%>
CGI PERL Redirect
• $q = new CGI;
print $q->redirect("http://www.new-
domain.com/");
ASP(Active Server Pages) Redirect
• <%@ Language=VBScript %>
<%
Response.Status="301 Moved Permanently"
Response.AddHeader
"Location","http://www.new-domain.com/"
%>
PHP(Hypertext Preprocessor) Redirect
• <?
Header( "HTTP/1.1 301 Moved Permanently"
);
Header( "Location: http://www.new-
domain.com" );
?>
ColdFusion Redirect
• <.cfheader statuscode="301"
statustext="Moved permanently">
<.cfheader name="Location"
value="http://www.new-domain.com">
IIS Redirect
• Start > Program > Administrative Tool > Go to
Internet Service Manager
• Right click on the file or folder which you need
to redirect
• Select a title named ‘redirection to a url’
• Enter the name of the page
• Check the both the checkbox ‘A permanent
redirection for this resource’ and ’exact url
entered above’ and click on apply
Check this Dialog Box
ASP.NET Redirect
• <script runat="server">
private void Page_Load(object sender,
System.EventArgs e)
{
Response.Status = "301 Moved Permanently";
Response.AddHeader("Location","http://www
.new-domain.com");
}
</script>
Thanks for Watching 
www.gsesoftsolutions.com
A Tech Blog
Twitter: @GSESoftSolution
My Facebook Page
@gsesoftsolutions

Mais conteúdo relacionado

Semelhante a How to create a 301 redirect

WordPress Ann Arbor: Redirects and Robots for Accurate Analytics Results
WordPress Ann Arbor: Redirects and Robots for Accurate Analytics ResultsWordPress Ann Arbor: Redirects and Robots for Accurate Analytics Results
WordPress Ann Arbor: Redirects and Robots for Accurate Analytics Results
oneilldec
 

Semelhante a How to create a 301 redirect (20)

How (& Why) To Redirect a URL
How (& Why) To Redirect a URLHow (& Why) To Redirect a URL
How (& Why) To Redirect a URL
 
The Ultimate SEO Migration Checklist by WeMoveWP
The Ultimate SEO Migration Checklist by WeMoveWPThe Ultimate SEO Migration Checklist by WeMoveWP
The Ultimate SEO Migration Checklist by WeMoveWP
 
Why Everyone Should be an Expert of 301 Redirects
Why Everyone Should be an Expert of 301 RedirectsWhy Everyone Should be an Expert of 301 Redirects
Why Everyone Should be an Expert of 301 Redirects
 
SEO ONPAGE Optimization
SEO ONPAGE OptimizationSEO ONPAGE Optimization
SEO ONPAGE Optimization
 
WordPress Ann Arbor: Redirects and Robots for Accurate Analytics Results
WordPress Ann Arbor: Redirects and Robots for Accurate Analytics ResultsWordPress Ann Arbor: Redirects and Robots for Accurate Analytics Results
WordPress Ann Arbor: Redirects and Robots for Accurate Analytics Results
 
301 Redirection in WordPress - The Ultimate Guide
301 Redirection in WordPress - The Ultimate Guide301 Redirection in WordPress - The Ultimate Guide
301 Redirection in WordPress - The Ultimate Guide
 
WordPress SEO
WordPress SEOWordPress SEO
WordPress SEO
 
Optimizing your WordPress Site & Web Content for Search - WordCamp 2012 Buffalo
Optimizing your WordPress Site & Web Content for Search - WordCamp 2012 BuffaloOptimizing your WordPress Site & Web Content for Search - WordCamp 2012 Buffalo
Optimizing your WordPress Site & Web Content for Search - WordCamp 2012 Buffalo
 
An SEO's Guide to Website Migrations
An SEO's Guide to Website MigrationsAn SEO's Guide to Website Migrations
An SEO's Guide to Website Migrations
 
Wordpress SEO Featuring Dave Jesch
Wordpress SEO Featuring Dave JeschWordpress SEO Featuring Dave Jesch
Wordpress SEO Featuring Dave Jesch
 
Website Architecture and Site Migration Guide (2015)
Website Architecture and Site Migration Guide (2015)Website Architecture and Site Migration Guide (2015)
Website Architecture and Site Migration Guide (2015)
 
301 vs 302 Redirects
301 vs 302 Redirects 301 vs 302 Redirects
301 vs 302 Redirects
 
what is SEO
what is SEOwhat is SEO
what is SEO
 
seo - on page - part iv - link structure
  seo - on page - part iv - link structure   seo - on page - part iv - link structure
seo - on page - part iv - link structure
 
ASP.NET Lecture 3
ASP.NET Lecture 3ASP.NET Lecture 3
ASP.NET Lecture 3
 
WordCamp 2012 WordPress SEO
WordCamp 2012 WordPress SEOWordCamp 2012 WordPress SEO
WordCamp 2012 WordPress SEO
 
Technical SEO Face-Off
Technical SEO Face-OffTechnical SEO Face-Off
Technical SEO Face-Off
 
Moving from Wordpress.com to Wordpress.org - Wordcamp Toronto 2011
Moving from Wordpress.com to Wordpress.org - Wordcamp Toronto 2011Moving from Wordpress.com to Wordpress.org - Wordcamp Toronto 2011
Moving from Wordpress.com to Wordpress.org - Wordcamp Toronto 2011
 
WordCamp Toronto SEO: How to do better in Google: Optimizing your WordPress S...
WordCamp Toronto SEO: How to do better in Google: Optimizing your WordPress S...WordCamp Toronto SEO: How to do better in Google: Optimizing your WordPress S...
WordCamp Toronto SEO: How to do better in Google: Optimizing your WordPress S...
 
.htaccess for SEOs - A presentation by Roxana Stingu
.htaccess for SEOs - A presentation by Roxana Stingu.htaccess for SEOs - A presentation by Roxana Stingu
.htaccess for SEOs - A presentation by Roxana Stingu
 

Mais de R K Gupta

How to change the skype password
How to change the skype passwordHow to change the skype password
How to change the skype password
R K Gupta
 

Mais de R K Gupta (13)

Karma Ebook in hindi
Karma Ebook in hindiKarma Ebook in hindi
Karma Ebook in hindi
 
प्रजापिता ब्रह्माकुमारीज धनबाद सेंटर शिव जयंती
प्रजापिता ब्रह्माकुमारीज धनबाद सेंटर शिव जयंतीप्रजापिता ब्रह्माकुमारीज धनबाद सेंटर शिव जयंती
प्रजापिता ब्रह्माकुमारीज धनबाद सेंटर शिव जयंती
 
Maha Shivratri Prabhat Khabar Full Page Sewa 12 Feb 2018
Maha Shivratri Prabhat Khabar Full Page Sewa 12 Feb 2018Maha Shivratri Prabhat Khabar Full Page Sewa 12 Feb 2018
Maha Shivratri Prabhat Khabar Full Page Sewa 12 Feb 2018
 
Mysteries Of The Universe - E-Book Brahma Kumaris
Mysteries Of The Universe - E-Book Brahma KumarisMysteries Of The Universe - E-Book Brahma Kumaris
Mysteries Of The Universe - E-Book Brahma Kumaris
 
Top 5 Wordpress Marketing Tips - GSE Soft Solutions
Top 5 Wordpress Marketing Tips - GSE Soft SolutionsTop 5 Wordpress Marketing Tips - GSE Soft Solutions
Top 5 Wordpress Marketing Tips - GSE Soft Solutions
 
Top 12 business wordpress responsive themes
Top 12 business wordpress responsive themesTop 12 business wordpress responsive themes
Top 12 business wordpress responsive themes
 
Secure Life New plan
Secure Life New planSecure Life New plan
Secure Life New plan
 
How to change the skype password
How to change the skype passwordHow to change the skype password
How to change the skype password
 
How to get add ons in google docs and sheets
How to get add ons in google docs and sheetsHow to get add ons in google docs and sheets
How to get add ons in google docs and sheets
 
Robots.txt vs rel=nofollow vs meta robots nofollow tutorial
Robots.txt vs rel=nofollow vs meta robots nofollow tutorialRobots.txt vs rel=nofollow vs meta robots nofollow tutorial
Robots.txt vs rel=nofollow vs meta robots nofollow tutorial
 
10 facebook business page tips and tricks
10 facebook business page tips and tricks10 facebook business page tips and tricks
10 facebook business page tips and tricks
 
17 tips to save your i phone's battery
17 tips to save your i phone's battery17 tips to save your i phone's battery
17 tips to save your i phone's battery
 
Most famous quotes about life by GSESoftSolution
Most famous quotes about life by GSESoftSolutionMost famous quotes about life by GSESoftSolution
Most famous quotes about life by GSESoftSolution
 

Último

Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
gajnagarg
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
ydyuyu
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
ydyuyu
 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
JOHNBEBONYAP1
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
ydyuyu
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
pxcywzqs
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Monica Sydney
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
ayvbos
 
75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx
Asmae Rabhi
 

Último (20)

Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
Top profile Call Girls In Dindigul [ 7014168258 ] Call Me For Genuine Models ...
 
APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53APNIC Updates presented by Paul Wilson at ARIN 53
APNIC Updates presented by Paul Wilson at ARIN 53
 
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查在线制作约克大学毕业证(yu毕业证)在读证明认证可查
在线制作约克大学毕业证(yu毕业证)在读证明认证可查
 
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
哪里办理美国迈阿密大学毕业证(本硕)umiami在读证明存档可查
 
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdfpdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
pdfcoffee.com_business-ethics-q3m7-pdf-free.pdf
 
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
2nd Solid Symposium: Solid Pods vs Personal Knowledge Graphs
 
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
原版制作美国爱荷华大学毕业证(iowa毕业证书)学位证网上存档可查
 
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
20240507 QFM013 Machine Intelligence Reading List April 2024.pdf
 
20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf20240508 QFM014 Elixir Reading List April 2024.pdf
20240508 QFM014 Elixir Reading List April 2024.pdf
 
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrStory Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
Story Board.pptxrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr
 
Trump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts SweatshirtTrump Diapers Over Dems t shirts Sweatshirt
Trump Diapers Over Dems t shirts Sweatshirt
 
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac RoomVip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
Vip Firozabad Phone 8250092165 Escorts Service At 6k To 30k Along With Ac Room
 
Best SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency DallasBest SEO Services Company in Dallas | Best SEO Agency Dallas
Best SEO Services Company in Dallas | Best SEO Agency Dallas
 
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
一比一原版(Offer)康考迪亚大学毕业证学位证靠谱定制
 
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi EscortsIndian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
Indian Escort in Abu DHabi 0508644382 Abu Dhabi Escorts
 
Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.Meaning of On page SEO & its process in detail.
Meaning of On page SEO & its process in detail.
 
Power point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria IuzzolinoPower point inglese - educazione civica di Nuria Iuzzolino
Power point inglese - educazione civica di Nuria Iuzzolino
 
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency""Boost Your Digital Presence: Partner with a Leading SEO Agency"
"Boost Your Digital Presence: Partner with a Leading SEO Agency"
 
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
一比一原版(Curtin毕业证书)科廷大学毕业证原件一模一样
 
75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx75539-Cyber Security Challenges PPT.pptx
75539-Cyber Security Challenges PPT.pptx
 

How to create a 301 redirect

  • 1. How to create a 301 Redirect www.gsesoftsolutions.com A Tech Blog Twitter: @GSESoftSolution My Facebook Page @gsesoftsolutions
  • 2. 301 Redirect • Search Engine Friendly Method • Change Page URLs with 301 redirects • Permanently moved to a new location • Can remove canonical issues(redirects to only www.domain.com) – webmaster can also be used to solve it • Google understand these (www.abc.com and abc.com) as a different URL. • Google recommends using a 301 redirect to change the URL of a page as it is shown in search engine results
  • 3. Client Request • GET /index.php HTTP/1.1 Host: www.example.org • HTTP/1.1 301 Moved Permanently Location: http://www.example.org/index.asp Server Response
  • 4. Redirect to www using htaccess redirect • RewriteEngine on rewritecond %{http_host} ^domain.com [nc] rewriterule ^(.*)$ http://www.domain.com/$1 [r=301,nc]
  • 5. Redirect Old Domain to New Domain using 301 Redirect • RewriteEngine on RewriteRule (.*) http://www.newdomain.com/$1 [R=301,L]
  • 6. Ruby on Rails Redirect • def old_action headers["Status"] = "301 Moved Permanently" redirect_to "http://www.new-domain.com/" end
  • 7. JSP (Java Server Pages) Redirect • <% response.setStatus(301); response.setHeader( "Location", "http://www.new-domain.com/" ); response.setHeader( "Connection", "close" ); %>
  • 8. CGI PERL Redirect • $q = new CGI; print $q->redirect("http://www.new- domain.com/");
  • 9. ASP(Active Server Pages) Redirect • <%@ Language=VBScript %> <% Response.Status="301 Moved Permanently" Response.AddHeader "Location","http://www.new-domain.com/" %>
  • 10. PHP(Hypertext Preprocessor) Redirect • <? Header( "HTTP/1.1 301 Moved Permanently" ); Header( "Location: http://www.new- domain.com" ); ?>
  • 11. ColdFusion Redirect • <.cfheader statuscode="301" statustext="Moved permanently"> <.cfheader name="Location" value="http://www.new-domain.com">
  • 12. IIS Redirect • Start > Program > Administrative Tool > Go to Internet Service Manager • Right click on the file or folder which you need to redirect • Select a title named ‘redirection to a url’ • Enter the name of the page • Check the both the checkbox ‘A permanent redirection for this resource’ and ’exact url entered above’ and click on apply
  • 14. ASP.NET Redirect • <script runat="server"> private void Page_Load(object sender, System.EventArgs e) { Response.Status = "301 Moved Permanently"; Response.AddHeader("Location","http://www .new-domain.com"); } </script>
  • 15. Thanks for Watching  www.gsesoftsolutions.com A Tech Blog Twitter: @GSESoftSolution My Facebook Page @gsesoftsolutions