SlideShare una empresa de 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

Más contenido relacionado

Similar 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
 

Similar 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
 

Más 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
 

Más 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

Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
shivangimorya083
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Sheetaleventcompany
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Call Girls In Delhi Whatsup 9873940964 Enjoy Unlimited Pleasure
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
Diya Sharma
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
imonikaupta
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
soniya singh
 

Último (20)

Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Shahpur Jat Escort Service Delhi N.C.R.
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call GirlVIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
VIP 7001035870 Find & Meet Hyderabad Call Girls LB Nagar high-profile Call Girl
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
Hire↠Young Call Girls in Tilak nagar (Delhi) ☎️ 9205541914 ☎️ Independent Esc...
 
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Saket Delhi 💯Call Us 🔝8264348440🔝
 
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...(+971568250507  ))#  Young Call Girls  in Ajman  By Pakistani Call Girls  in ...
(+971568250507 ))# Young Call Girls in Ajman By Pakistani Call Girls in ...
 
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting  High Prof...
VIP Model Call Girls Hadapsar ( Pune ) Call ON 9905417584 Starting High Prof...
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip CallDelhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
Delhi Call Girls Rohini 9711199171 ☎✔👌✔ Whatsapp Hard And Sexy Vip Call
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
DDoS In Oceania and the Pacific, presented by Dave Phelan at NZNOG 2024
 
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 26 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
₹5.5k {Cash Payment}New Friends Colony Call Girls In [Delhi NIHARIKA] 🔝|97111...
 
How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)How is AI changing journalism? (v. April 2024)
How is AI changing journalism? (v. April 2024)
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRLLucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
Lucknow ❤CALL GIRL 88759*99948 ❤CALL GIRLS IN Lucknow ESCORT SERVICE❤CALL GIRL
 
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Defence Colony Delhi 💯Call Us 🔝8264348440🔝
 

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