{"id":1386,"date":"2011-08-24T20:40:52","date_gmt":"2011-08-25T03:40:52","guid":{"rendered":"https:\/\/daveworks.net\/web-design-development-tips\/?p=1386"},"modified":"2011-12-14T22:16:53","modified_gmt":"2011-12-15T06:16:53","slug":"how-to-redirect-your-website","status":"publish","type":"post","link":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/","title":{"rendered":"How to Redirect Your Website"},"content":{"rendered":"<p><strong>Do you want to have your website automatically redirect to another site or specific page?<\/strong> (read on)<\/p>\n<p><img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20width%3D%27130%27%20height%3D%27152%27%20viewBox%3D%270%200%20130%20152%27%3E%3Crect%20width%3D%27130%27%20height%3D%27152%27%20fill-opacity%3D%220%22%2F%3E%3C%2Fsvg%3E\" data-orig-src=\"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/redirect-website.png\" alt=\"301 Redirect Website image\" title=\"301 Redirect Website\" width=\"130\" height=\"152\" class=\"lazyload alignright size-full wp-image-1393\" \/>Redirects are fairly simple. BUT you need to know what type of file types you are using (php, asp, cfm, etc.) OR if your webhost uses to &#8220;<a href=\"\/web-design-development-tips\/web-development\/how-to-redirect-your-website#redirect_video\" title=\"How to create a redirect via cPanel\">cPanel<\/a>&#8221; you can this without knowing code.(<a href=\"\/web-design-development-tips\/web-development\/how-to-redirect-your-website#redirect_video\" title=\"How to create a redirect via cPanel\">watch quick video<\/a>)  One important note to consider when doing this is to not only think about the redirect but how the search engines will treat the redirect.  Most folks want to get (and keep) the best search results they can and implementing <strong><em>redirects can affect those search results<\/em><\/strong>.  Google and the others look very carefully at redirects to make sure that their results point to valid content.  <strong>How do implement correctly?<\/strong>  <strong>&#8220;301 Redirects&#8221;<\/strong>  (The 301 tells search engines that the page has *permanently* moved to a new location and keeps your search engine results in tact) There are other redirect types, but for this post, we&#8217;ll just deal with 301s.<\/p>\n<h3>So What Exactly Do I Need to Do To Correctly Redirect My Site?? <\/h3>\n<p><!--more Read On to Correctly Create Redirects --><\/p>\n<p>Below are snippets of code <em>(by script\/file type) <\/em>to place at the very top of your homepage: (These snippets are for those who are <strong>not <\/strong> using content management systems like WordPress. Most likely you&#8217;ll need to implement the redirect via <a href=\"#htaccess\" title=\"How to create a redirect via cPanel\">.htaccess<\/a>, either manually or via <a href=\"#video\" title=\"How to create a redirect via cPanel\">cPanel<\/a>)<\/p>\n<h3>PHP Redirect<\/h3>\n<p>&lt;?php<br \/>\nheader( &#8220;HTTP\/1.1 301 Moved Permanently&#8221; );<br \/>\nheader( &#8220;location: https:\/\/www.thenewsite.com&#8221; );<br \/>\n?&gt;<\/p>\n<h3>.NET Redirect<\/h3>\n<p>&lt;script runat=&#8221;server&#8221;&gt;<br \/>\nprivate void Page_Load(object sender, System.EventArgs e)<br \/>\n{<br \/>\nResponse.Status = &#8220;301 Moved Permanently&#8221;;<br \/>\nResponse.AddHeader(&#8220;Location&#8221;,&#8221;https:\/\/www.thenewsite.com&#8221;);<br \/>\n}<br \/>\n&lt;\/script&gt; <\/p>\n<h3>Ruby on Rails Redirect<\/h3>\n<p>def old_action<br \/>\nheaders[&#8220;Status&#8221;] = &#8220;301 Moved Permanently&#8221;<br \/>\nredirect_to &#8220;https:\/\/www.thenewsite.com&#8221;<br \/>\nend <\/p>\n<h3>ASP Redirect<\/h3>\n<p>&lt;%@ Language=VBScript %&gt;<br \/>\n&lt;%<br \/>\nResponse.Status=&#8221;301 Moved Permanently&#8221;<br \/>\nResponse.AddHeader &#8220;Location&#8221;,&#8221;https:\/\/www.thenewsite.com&#8221;<br \/>\n%&gt; <\/p>\n<h3>JSP Redirect<\/h3>\n<p>&lt;%<br \/>\nresponse.setStatus(301);<br \/>\nresponse.setHeader( &#8220;Location&#8221;, &#8220;https:\/\/www.thenewsite.com&#8221; );<br \/>\nresponse.setHeader( &#8220;Connection&#8221;, &#8220;close&#8221; );<br \/>\n%&gt; <\/p>\n<h3>PERL \/ CGI  Redirect<\/h3>\n<p>$q = new CGI;<br \/>\nprint $q-&gt;redirect(&#8220;https:\/\/www.thenewsite.com&#8221;); <\/p>\n<p><a name=\"htaccess\"><\/a><\/p>\n<h3>.htaccess Redirect<\/h3>\n<p>You can also do an .htaccess redirect (copy and paste the code below into a new file as save as &#8220;.htaccess&#8221;) This single file, uploaded to the root directory of your website will redirect all directories and page files from your existing domain to the new domain.<\/p>\n<p>Options +FollowSymLinks<br \/>\nRewriteEngine on<br \/>\nRewriteRule (.*) https:\/\/www.thenewsite.com\/$1 [R=301,L]<\/p>\n<p>*Notes:<br \/>\n<em>Replace the &#8220;www.thenewsite.com&#8221; in the above code with your actual domain name.<br \/>\nThis works ONLY on Linux servers with the Apache Mod-Rewrite moduled enabled. (talk to your webhost to verify)<\/em><\/p>\n<h3>Plain HTML <\/h3>\n<p>*If for whatever reason (as a last resort) you can only redirect a flat html page, please do the folowing &#8220;Meta Refresh&#8221;  (I mention this because Google doesn&#8217;t really like it)  ;)<br \/>\n&lt;html&gt;<br \/>\n&lt;head&gt;<br \/>\n&lt;meta http-equiv=&#8221;refresh&#8221; content=&#8221;0;URL=https:\/\/whatever.com&#8221;&gt;<br \/>\n&lt;\/head&gt;<br \/>\n&lt;body&gt;<\/p>\n<p><a name=\"redirect_video\"><\/a><\/p>\n<h3>Create Redirects via Cpanel<\/h3>\n<p><small>(video courtesy of <a href=\"https:\/\/www.youtube.com\/user\/LearningCPanel\" rel=\"nofollow\" title=\"Video Courtesty of LearningCPanel\">LearningCPanel<\/a>)<\/small><br \/>\n<iframe data-privacy-type=\"youtube\" src=\"\" class=\"fusion-hidden lazyload\" width=\"560\" height=\"345\" data-privacy-src=\"https:\/\/www.youtube.com\/embed\/AyQikvf40FM\" data-orig-src=\"https:\/\/www.youtube.com\/embed\/AyQikvf40FM\" frameborder=\"0\" allowfullscreen><\/iframe><div class=\"fusion-privacy-placeholder\" style=\"width:560px; height:345px;\" data-privacy-type=\"youtube\"><div class=\"fusion-privacy-placeholder-content\"><div class=\"fusion-privacy-label\">For privacy reasons YouTube needs your permission to be loaded.<\/div><button data-privacy-type=\"youtube\" class=\"fusion-button button-default fusion-button-default-size button fusion-privacy-consent\">I Accept<\/button><\/div><\/div><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Do you want to have your website automatically redirect to&hellip; <a class=\"continue\" href=\"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/\">Continue Reading<span> How to Redirect Your Website<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[46],"tags":[264,265,393,392,261,260,262,263],"class_list":["post-1386","post","type-post","status-publish","format-standard","hentry","category-web-development","tag-301-redirect","tag-301-redirect-website","tag-how-to-redirect-my-website","tag-how-to-redirect-website-how-to-redirect-website","tag-how-to-redirect-your-homepage","tag-how-to-redirect-your-website","tag-redirect-website","tag-redirecting-webpage-to-another-webpage"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO Pro 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"How to Redirect Your Website | Daveworks Web Development\" \/>\n\t<meta name=\"robots\" content=\"max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n\t<meta name=\"author\" content=\"David Naves\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO Pro (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Daveworks Web Development\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to Redirect Website\" \/>\n\t\t<meta property=\"og:description\" content=\"How to Redirect Your Website | Daveworks Web Development\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2011-08-25T03:40:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2011-12-15T06:16:53+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/daveworks\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@dhnaves\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to Redirect Website\" \/>\n\t\t<meta name=\"twitter:description\" content=\"How to Redirect Your Website | Daveworks Web Development\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#article\",\"name\":\"How to Redirect Website\",\"headline\":\"How to Redirect Your Website\",\"author\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/author\\\/dave-2-2-2-2\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/wp-content\\\/uploads\\\/redirect-website.png\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#articleImage\",\"width\":130,\"height\":152,\"caption\":\"301 Redirect Website image\"},\"datePublished\":\"2011-08-24T20:40:52-07:00\",\"dateModified\":\"2011-12-14T22:16:53-08:00\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#webpage\"},\"articleSection\":\"Web Development, 301 redirect, 301 redirect website, How to Redirect My Website?, How to Redirect Website? How to Redirect Website, How to Redirect Your Homepage, How to Redirect Your Website, Redirect Website, Redirecting Webpage to Another Webpage\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/category\\\/web-development\\\/#listItem\",\"name\":\"Web Development\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/category\\\/web-development\\\/#listItem\",\"position\":2,\"name\":\"Web Development\",\"item\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/category\\\/web-development\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#listItem\",\"name\":\"How to Redirect Your Website\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#listItem\",\"position\":3,\"name\":\"How to Redirect Your Website\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/category\\\/web-development\\\/#listItem\",\"name\":\"Web Development\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/#organization\",\"name\":\"Daveworks Web Development\",\"description\":\"Daveworks Web Development is a premium Northern California agency specializing in custom WordPress engineering, high-performance WooCommerce solutions, advanced Local SEO, and AI Search Optimization (GEO). Founded by digital expert David Naves, Daveworks applies a signature 5-layer development methodology\\u2014design, development, optimization, socialization, and training\\u2014to build high-ROI digital footprints for small-to-midsize businesses.\",\"url\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/\",\"email\":\"dave@daveworks.net\",\"telephone\":\"+15308309088\",\"logo\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/wp-content\\\/uploads\\\/daveworks-pc-background-scaled.jpg\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#organizationLogo\",\"width\":2560,\"height\":1017,\"caption\":\"Daveworks Web Development Logo | Web Design in Northern CA\"},\"image\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#organizationLogo\"},\"sameAs\":[\"https:\\\/\\\/www.instagram.com\\\/daveworksweb\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCmZ9eZNADIaRUQaXG76fiCw\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/daveworks-web-development\"],\"address\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/#postaladdress\",\"@type\":\"PostalAddress\",\"streetAddress\":\"2945 Bell Road 320\",\"postalCode\":\"95603\",\"addressLocality\":\"Auburn\",\"addressRegion\":\"CA\",\"addressCountry\":\"US\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/author\\\/dave-2-2-2-2\\\/#author\",\"url\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/author\\\/dave-2-2-2-2\\\/\",\"name\":\"David Naves\",\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/91f5fdb120990253993eddc2476466f038c51c5963d1d478080f12c87f76c8cf?s=96&d=identicon&r=g\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#webpage\",\"url\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/\",\"name\":\"How to Redirect Website\",\"description\":\"How to Redirect Your Website | Daveworks Web Development\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/web-development\\\/how-to-redirect-your-website\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/author\\\/dave-2-2-2-2\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/author\\\/dave-2-2-2-2\\\/#author\"},\"datePublished\":\"2011-08-24T20:40:52-07:00\",\"dateModified\":\"2011-12-14T22:16:53-08:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/#website\",\"url\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/\",\"name\":\"Daveworks Web Development\",\"description\":\"Small Business Specialists: Web Development | SEO | eCommerce | Social Networking\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/daveworks.net\\\/web-design-development-tips\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO Pro -->\r\n\t\t<title>How to Redirect Website<\/title>\n\n","aioseo_head_json":{"title":"How to Redirect Website","description":"How to Redirect Your Website | Daveworks Web Development","canonical_url":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/","robots":"max-snippet:-1, max-image-preview:large, max-video-preview:-1","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#article","name":"How to Redirect Website","headline":"How to Redirect Your Website","author":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/author\/dave-2-2-2-2\/#author"},"publisher":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/redirect-website.png","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#articleImage","width":130,"height":152,"caption":"301 Redirect Website image"},"datePublished":"2011-08-24T20:40:52-07:00","dateModified":"2011-12-14T22:16:53-08:00","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#webpage"},"isPartOf":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#webpage"},"articleSection":"Web Development, 301 redirect, 301 redirect website, How to Redirect My Website?, How to Redirect Website? How to Redirect Website, How to Redirect Your Homepage, How to Redirect Your Website, Redirect Website, Redirecting Webpage to Another Webpage"},{"@type":"BreadcrumbList","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips#listItem","position":1,"name":"Home","item":"https:\/\/daveworks.net\/web-design-development-tips","nextItem":{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips\/category\/web-development\/#listItem","name":"Web Development"}},{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips\/category\/web-development\/#listItem","position":2,"name":"Web Development","item":"https:\/\/daveworks.net\/web-design-development-tips\/category\/web-development\/","nextItem":{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#listItem","name":"How to Redirect Your Website"},"previousItem":{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#listItem","position":3,"name":"How to Redirect Your Website","previousItem":{"@type":"ListItem","@id":"https:\/\/daveworks.net\/web-design-development-tips\/category\/web-development\/#listItem","name":"Web Development"}}]},{"@type":"Organization","@id":"https:\/\/daveworks.net\/web-design-development-tips\/#organization","name":"Daveworks Web Development","description":"Daveworks Web Development is a premium Northern California agency specializing in custom WordPress engineering, high-performance WooCommerce solutions, advanced Local SEO, and AI Search Optimization (GEO). Founded by digital expert David Naves, Daveworks applies a signature 5-layer development methodology\u2014design, development, optimization, socialization, and training\u2014to build high-ROI digital footprints for small-to-midsize businesses.","url":"https:\/\/daveworks.net\/web-design-development-tips\/","email":"dave@daveworks.net","telephone":"+15308309088","logo":{"@type":"ImageObject","url":"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#organizationLogo","width":2560,"height":1017,"caption":"Daveworks Web Development Logo | Web Design in Northern CA"},"image":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#organizationLogo"},"sameAs":["https:\/\/www.instagram.com\/daveworksweb","https:\/\/www.youtube.com\/channel\/UCmZ9eZNADIaRUQaXG76fiCw","https:\/\/www.linkedin.com\/company\/daveworks-web-development"],"address":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/#postaladdress","@type":"PostalAddress","streetAddress":"2945 Bell Road 320","postalCode":"95603","addressLocality":"Auburn","addressRegion":"CA","addressCountry":"US"}},{"@type":"Person","@id":"https:\/\/daveworks.net\/web-design-development-tips\/author\/dave-2-2-2-2\/#author","url":"https:\/\/daveworks.net\/web-design-development-tips\/author\/dave-2-2-2-2\/","name":"David Naves","image":{"@type":"ImageObject","url":"https:\/\/secure.gravatar.com\/avatar\/91f5fdb120990253993eddc2476466f038c51c5963d1d478080f12c87f76c8cf?s=96&d=identicon&r=g"}},{"@type":"WebPage","@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#webpage","url":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/","name":"How to Redirect Website","description":"How to Redirect Your Website | Daveworks Web Development","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/#website"},"breadcrumb":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/#breadcrumblist"},"author":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/author\/dave-2-2-2-2\/#author"},"creator":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/author\/dave-2-2-2-2\/#author"},"datePublished":"2011-08-24T20:40:52-07:00","dateModified":"2011-12-14T22:16:53-08:00"},{"@type":"WebSite","@id":"https:\/\/daveworks.net\/web-design-development-tips\/#website","url":"https:\/\/daveworks.net\/web-design-development-tips\/","name":"Daveworks Web Development","description":"Small Business Specialists: Web Development | SEO | eCommerce | Social Networking","inLanguage":"en-US","publisher":{"@id":"https:\/\/daveworks.net\/web-design-development-tips\/#organization"}}]},"og:locale":"en_US","og:site_name":"Daveworks Web Development","og:type":"article","og:title":"How to Redirect Website","og:description":"How to Redirect Your Website | Daveworks Web Development","og:url":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/","og:image":"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg","og:image:secure_url":"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg","article:published_time":"2011-08-25T03:40:52+00:00","article:modified_time":"2011-12-15T06:16:53+00:00","article:publisher":"https:\/\/www.facebook.com\/daveworks","twitter:card":"summary","twitter:site":"@dhnaves","twitter:title":"How to Redirect Website","twitter:description":"How to Redirect Your Website | Daveworks Web Development","twitter:image":"https:\/\/daveworks.net\/web-design-development-tips\/wp-content\/uploads\/daveworks-pc-background-scaled.jpg"},"aioseo_meta_data":{"post_id":"1386","title":"How to Redirect Website","description":"How to Redirect Your Website | Daveworks Web Development","keywords":[{"label":"301 redirect","value":"301 redirect"},{"label":"301 redirect website","value":"301 redirect website"},{"label":"How to Redirect Your Homepage","value":"How to Redirect Your Homepage"},{"label":"How to Redirect Your Website","value":"How to Redirect Your Website"},{"label":"Redirect Website","value":"Redirect Website"},{"label":"Redirecting Webpage to Another Webpage","value":"Redirecting Webpage to Another Webpage"}],"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2022-07-12 18:07:07","updated":"2026-05-22 17:53:29","seo_analyzer_scan_date":"2026-05-22 17:34:09","reviewed_by":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/daveworks.net\/web-design-development-tips\" title=\"Home\">Home<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t<a href=\"https:\/\/daveworks.net\/web-design-development-tips\/category\/web-development\/\" title=\"Web Development\">Web Development<\/a>\n<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\tHow to Redirect Your Website\n<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/daveworks.net\/web-design-development-tips"},{"label":"Web Development","link":"https:\/\/daveworks.net\/web-design-development-tips\/category\/web-development\/"},{"label":"How to Redirect Your Website","link":"https:\/\/daveworks.net\/web-design-development-tips\/web-development\/how-to-redirect-your-website\/"}],"_links":{"self":[{"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/posts\/1386","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/comments?post=1386"}],"version-history":[{"count":30,"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/posts\/1386\/revisions"}],"predecessor-version":[{"id":1791,"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/posts\/1386\/revisions\/1791"}],"wp:attachment":[{"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/media?parent=1386"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/categories?post=1386"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/daveworks.net\/web-design-development-tips\/wp-json\/wp\/v2\/tags?post=1386"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}