{"id":249,"date":"2023-10-22T11:09:15","date_gmt":"2023-10-22T10:09:15","guid":{"rendered":"https:\/\/web-design-eastbourne.co.uk\/News\/?p=249"},"modified":"2023-12-22T10:18:01","modified_gmt":"2023-12-22T10:18:01","slug":"avoid-landing-page-redirects-google-page-speed-insights","status":"publish","type":"post","link":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/","title":{"rendered":"Why You Need To Avoid Landing Page Redirects &#8211; Google PageSpeed Insights"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Avoid landing page redirects \u2013 Google PageSpeed Insights<\/h1>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"960\" height=\"640\" src=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg\" alt=\"\" class=\"wp-image-251\" srcset=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg 960w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720-300x200.jpg 300w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720-768x512.jpg 768w\" sizes=\"(max-width: 960px) 100vw, 960px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Avoid landing page redirects<\/h2>\n\n\n\n<p>This is part of our guide on improving page speed using the Google page speed insights developer tool. In this article we are discussing the&nbsp;<strong>Avoid Landing Page Redirects<\/strong>&nbsp;section. We will be writing this article for novices using plain English and attempting to add a little more light to the explanation given by Google.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is the landing page?<\/h2>\n\n\n\n<p>To explain how to avoid landing page redirects I will first explain what the landing page and redirects are.<\/p>\n\n\n\n<p>The landing page is the first page seen by a user when they type in your sites URL. This is often the index page (or Homepage) but can be anything you desire.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What are redirects?<\/h2>\n\n\n\n<p>If a site owner wants to change a page that the user sees and replace it with another page or site that already exists they can redirect that page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">The Impact of Redirects on Page Load Speed<\/h2>\n\n\n\n<p>Redirects can have a significant impact on page load times, and it is crucial to minimize the use of unnecessary redirects. Each redirect triggers an additional HTTP request-response cycle, which adds to the round-trip time (RTT) it takes for a page to load. Slower networks and mobile devices are particularly affected by multiple redirects, leading to a poor user experience.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Choose the Right Type of Redirect<\/h2>\n\n\n\n<p>There are two common types of redirects: 301 and 302. A 301 redirect indicates a permanent move, while a 302 redirect signifies a temporary situation. Ensure you use the appropriate type of redirect based on the content you are directing users to.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Avoid Redirects<\/h2>\n\n\n\n<p>Each redirect introduces an additional HTTP request, so limiting the number of redirects per page is crucial. Aim for one to two redirects at most to reduce the page load time.<\/p>\n\n\n\n<p>Redirecting users from one page to another right after they land on your website can be frustrating. Instead, focus on creating user-friendly landing pages that provide immediate value and relevant information.<\/p>\n\n\n\n<p>When restructuring your website or making changes to your URL structure, it is essential to plan and execute redirects thoughtfully. Avoid redirecting from one URL to another that also immediately triggers another redirect. This unnecessary redirection adds unnecessary round-trip time and hinders page load speed.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Remove Trailing Slashes<\/h2>\n\n\n\n<p>Using a trailing slash at the end of a URL often indicates a file, which adds an additional HTTP request. Avoid using trailing slashes whenever possible to streamline page rendering.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Optimize for Responsive Layout<\/h2>\n\n\n\n<p>With the increasing number of users accessing websites from mobile devices, it is crucial to ensure your website has a responsive layout. Responsive design allows the content to adapt and display appropriately across different screen sizes, improving user experience and reducing the need for redirects.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><br>Importance of Page Performance, User-Friendly URLs, and SEO<\/h2>\n\n\n\n<p><br>Redirects not only impact page load speed but also influence search engine optimization (SEO). Excessive use of redirects can confuse search engine bots and negatively affect how they crawl your site. It is vital to create a clear and logical URL structure that minimizes the need for redirects, ensuring search engines can easily index and understand your website&#8217;s content.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Avoid Javascript Redirects<\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">Client Side Redirect<\/h2>\n\n\n\n<p>Normally the user selects a website and this request is sent to the server. The server then sends back the code for the webpage which is assembled and displayed by the user\u2019s browser.<\/p>\n\n\n\n<p>If the webpage includes the command to redirect then once the site has been sent to the users browser, the redirect is read and then another request is made to the server for the required web page. And while this repeated request is being made the user is left with a blank screen.<\/p>\n\n\n\n<p>The wrong way to redirect a page is to add code to that page that does the redirecting. This is known as \u2018client side redirection\u2019 and is a problem because the user has to wait longer for the page to load.<\/p>\n\n\n\n<p>It is possible to use JavaScript to redirect or plugins such as &#8216;Simply Static&#8217; that uses server-side code to redirect the user. They do have some uses (such as a redirect after a password is entered or if you don&#8217;t have server access but for they are not the best option for performance.<\/p>\n\n\n\n<p>The reason being that the initial page has to load before the redirect is read. This means loading html and non-html resources, the header code along with the header, css, etc before changing the url to the final landing page.<\/p>\n\n\n\n<p>Instead use redirects on the server (server-side) if possible. If the user uses the web.config or .htaccess files directly to add a&nbsp;request to the server to add a 301 from the given url&nbsp; to the final landing page the time it takes is less than one millisecond. Server-side eliminates the need for other resources to be loaded first.<\/p>\n\n\n\n<p>Example of JavaScript Redirect code<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;script>\n\nsetTimeout(\"location.href = 'http:\/\/example.com';\", 5000);\n\n&lt;\/script><\/code><\/pre>\n\n\n\n<p><\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"768\" height=\"376\" src=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-client-side.png\" alt=\"Avoid landing page redirects client side\" class=\"wp-image-254\" srcset=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-client-side.png 768w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-client-side-300x147.png 300w\" sizes=\"(max-width: 768px) 100vw, 768px\" \/><\/figure>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"425\" src=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/browsers-1273344_1280-1-1024x425.png\" alt=\"\" class=\"wp-image-255\" srcset=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/browsers-1273344_1280-1-1024x425.png 1024w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/browsers-1273344_1280-1-300x124.png 300w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/browsers-1273344_1280-1-768x319.png 768w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/browsers-1273344_1280-1-1080x448.png 1080w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/browsers-1273344_1280-1.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p>But there is an alternative.<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"768\" src=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280-1024x768.png\" alt=\"\" class=\"wp-image-182\" srcset=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280-1024x768.png 1024w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280-300x225.png 300w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280-768x576.png 768w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280-510x382.png 510w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280-1080x810.png 1080w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/client-341420_1280.png 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Server Side Redirect<\/h2>\n\n\n\n<p>A redirect command can be added to a file that remains on the server. That way when the user requests the site, the server already knows to correct page to send back and this cuts down the amount of requests.<\/p>\n\n\n\n<p>To do this you need to know the type of server you are using and you can get this information from your web host. What you want to know is whether your site is run on&nbsp;<strong>apache<\/strong>&nbsp;or&nbsp;<strong>windows<\/strong>&nbsp;servers.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Apache Servers<\/h2>\n\n\n\n<p>The majority of websites are run on Apache servers and that being the case you can give your server certain commands using a <a href=\"https:\/\/web-design-eastbourne.co.uk\/News\/htaccess-file\/\">htaccess file<\/a>.<\/p>\n\n\n\n<p>To create your .htaccess file you can use any code editor or even notepad.<\/p>\n\n\n\n<p>Using notepad you can simply create a new file and enter the following.<\/p>\n\n\n\n<p>First we turn on the redirect engine which is done with the simple line&nbsp;<strong>RewriteEngine On<\/strong>. This command is only input once in the file, no matter how many redirects we want to do. Then on a new line enter<\/p>\n\n\n\n<p>Redirect 301 \/old-page.html http:\/\/www.mydomain.com\/new-page.html<\/p>\n\n\n\n<figure class=\"wp-block-image aligncenter\"><img loading=\"lazy\" decoding=\"async\" width=\"1015\" height=\"519\" src=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-htaccess-file.png\" alt=\"\" class=\"wp-image-252\" srcset=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-htaccess-file.png 1015w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-htaccess-file-300x153.png 300w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-htaccess-file-768x393.png 768w\" sizes=\"(max-width: 1015px) 100vw, 1015px\" \/><\/figure>\n\n\n\n<p>The \u201c<strong>Redirect 301<\/strong>\u201d is the command and states that this is a permanent redirect. Google will pick up on this also and use it accordingly for SEO purposes. Alternatively you can use a \u2018<strong>Redirect 302<\/strong>\u201d which states that it is a temporary redirect. In this case Google makes no change to backlink attribution etc.<\/p>\n\n\n\n<p>After entering \u201cRedirect 301\u201d you must leave a space then a forward slash followed by original page you wish to redirect. So in the case of your homepage it would generally be \u2018\/index.html\u2019. Finally you leave another space and enter the entire path of the new page you want to redirect too.<\/p>\n\n\n\n<p>If you wish to redirect more pages you just simply enter the \u201cRedirect 301 on a new line followed by the links as stated above. You can even redirect the entire site with just a few lines of code but we will cover that in another article.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"676\" height=\"479\" src=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-save-htaccess-file.png\" alt=\"\" class=\"wp-image-253\" srcset=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-save-htaccess-file.png 676w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-save-htaccess-file-300x213.png 300w, https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/Avoid-landing-page-redirects-save-htaccess-file-400x284.png 400w\" sizes=\"(max-width: 676px) 100vw, 676px\" \/><\/figure>\n\n\n\n<p>To save your .htaccess file for the first time you need to go to file and then save as. In the File Name field enter \u201c.htaccess\u201d (including the speech marks as shown in the image) and press save. That\u2019s it you have created your .htaccess file and from now on you can just save that file in the normal way. If you didn\u2019t include the speech marks then notepad would just create it as a text file which couldn\u2019t be read by the server.<\/p>\n\n\n\n<p>The next task is to upload the file into the top directory of your site using an ftp client such as Dreamweaver or Filezilla.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTTPS Encryption Redirect<\/h2>\n\n\n\n<p>A common form of redirect is the use of HTTPS encryption. HTTPS encrypts data between the clients browser and the server using a protocol known as TLS or Transport Layer Security. By adding code to the .htaccess file you tell the server to redirect all the domains urls from http to https. When this is done and an <a href=\"https:\/\/web-design-eastbourne.co.uk\/News\/what-is-ssl-secure-sockets-layer\/\">SSL certificate<\/a> is present the entire site will use tls negotiation and encryption.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Redirects using Windows Servers<\/h2>\n\n\n\n<p>There are various methods to implement URL redirects on windows servers including using the web.config file, or using&nbsp;<a href=\"https:\/\/www.iis.net\/downloads\/microsoft\/url-rewrite\">Microsoft\u2019s URL Rewrite<\/a><\/p>\n\n\n\n<p>We hope you found this guide to avoid landing page redirects useful and if so you may find more articles in the series helpful. For more in the series please click on the link below.<\/p>\n\n\n\n<p><a href=\"https:\/\/web-design-eastbourne.co.uk\/News\/google-page-speed-insights\/\">This is part of our guide on improving page speed using the Google page speed insights developer tool.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Summary of Important Tips for Redirection<\/h2>\n\n\n\n<p><br>To optimize your website for performance and user experience, remember the following key points:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Avoid landing page redirects as they can frustrate users.<\/li>\n\n\n\n<li>Minimize the use of redirects to reduce page load times.<\/li>\n\n\n\n<li>Choose the appropriate redirect type (301 or 302) based on the situation.<\/li>\n\n\n\n<li>Avoid unnecessary redirects that trigger additional HTTP requests.<\/li>\n\n\n\n<li>Remove trailing slashes from URLs to streamline page rendering.<\/li>\n\n\n\n<li>Optimize your website design for responsiveness to cater to mobile users.<\/li>\n\n\n\n<li>Ensure your URL structure is logical and easy to crawl for search engine bots.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-\"><\/h2>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Avoid landing page redirects \u2013 Google PageSpeed Insights Avoid landing page redirects This is part of our guide on improving page speed using the Google page speed insights developer tool. In this article we are discussing the&nbsp;Avoid Landing Page Redirects&nbsp;section. We will be writing this article for novices using plain English and attempting to add [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":251,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_edit_lock":["1703240299:2"],"footnotes":[""],"_thumbnail_id":["251"],"_et_pb_use_builder":["off"],"_et_pb_old_content":[""],"_et_gb_content_width":[""],"theme-transparent-header-meta":[""],"adv-header-id-meta":[""],"stick-header-meta":[""],"astra-migrate-meta-layouts":[""],"_links_to":[""],"_links_to_target":[""],"_edit_last":["2"],"_yoast_wpseo_primary_category":["23"],"_yoast_wpseo_focuskw":["Avoid landing page redirects"],"_yoast_wpseo_metadesc":["In this article we are discussing the\u00a0Avoid Landing Page Redirects\u00a0section to improve your Google page speed insights score."],"_yoast_wpseo_linkdex":["75"],"_yoast_wpseo_content_score":["60"],"_yoast_wpseo_estimated-reading-time-minutes":["9"],"_yoast_wpseo_wordproof_timestamp":[""],"_yoast_indexnow_last_ping":["1703240281"],"cmplz_hide_cookiebanner":[""],"ilj_blacklistdefinition":["a:0:{}"],"ilj_linkdefinition":["a:0:{}"],"_yoast_wpseo_inclusive_language_score":["90"],"_yoast_wpseo_focuskeywords":["[]"],"_yoast_wpseo_keywordsynonyms":["[\"\"]"],"_et_dynamic_cached_shortcodes":["a:0:{}"],"_et_dynamic_cached_attributes":["a:0:{}"]},"categories":[23,10,8],"tags":[],"class_list":["post-249","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-google-pagespeed-insights","category-website-security","category-website-speed"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Why You Need To Avoid Landing Page Redirects - Google PageSpeed Insights - Web Design Latest News<\/title>\n<meta name=\"description\" content=\"In this article we are discussing the\u00a0Avoid Landing Page Redirects\u00a0section to improve your Google page speed insights score.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Why You Need To Avoid Landing Page Redirects - Google PageSpeed Insights - Web Design Latest News\" \/>\n<meta property=\"og:description\" content=\"In this article we are discussing the\u00a0Avoid Landing Page Redirects\u00a0section to improve your Google page speed insights score.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Design Latest News\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ScriptedArtWebDesign\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/keir.chapman.9\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-22T10:09:15+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-22T10:18:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"960\" \/>\n\t<meta property=\"og:image:height\" content=\"640\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Keir Chapman\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@scriptedart\" \/>\n<meta name=\"twitter:site\" content=\"@scriptedart\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Keir Chapman\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"9 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Why You Need To Avoid Landing Page Redirects - Google PageSpeed Insights - Web Design Latest News","description":"In this article we are discussing the\u00a0Avoid Landing Page Redirects\u00a0section to improve your Google page speed insights score.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/","og_locale":"en_GB","og_type":"article","og_title":"Why You Need To Avoid Landing Page Redirects - Google PageSpeed Insights - Web Design Latest News","og_description":"In this article we are discussing the\u00a0Avoid Landing Page Redirects\u00a0section to improve your Google page speed insights score.","og_url":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/","og_site_name":"Web Design Latest News","article_publisher":"https:\/\/www.facebook.com\/ScriptedArtWebDesign\/","article_author":"https:\/\/www.facebook.com\/keir.chapman.9\/","article_published_time":"2023-10-22T10:09:15+00:00","article_modified_time":"2023-12-22T10:18:01+00:00","og_image":[{"width":960,"height":640,"url":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg","type":"image\/jpeg"}],"author":"Keir Chapman","twitter_card":"summary_large_image","twitter_creator":"@scriptedart","twitter_site":"@scriptedart","twitter_misc":{"Written by":"Keir Chapman","Estimated reading time":"9 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#article","isPartOf":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/"},"author":{"name":"Keir Chapman","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#\/schema\/person\/52653b471130e58f9af7a0b6168fa59a"},"headline":"Why You Need To Avoid Landing Page Redirects &#8211; Google PageSpeed Insights","datePublished":"2023-10-22T10:09:15+00:00","dateModified":"2023-12-22T10:18:01+00:00","mainEntityOfPage":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/"},"wordCount":1536,"commentCount":0,"publisher":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#organization"},"image":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#primaryimage"},"thumbnailUrl":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg","articleSection":["Google PageSpeed Insights","Website Security","Website Speed"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/","url":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/","name":"Why You Need To Avoid Landing Page Redirects - Google PageSpeed Insights - Web Design Latest News","isPartOf":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#website"},"primaryImageOfPage":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#primaryimage"},"image":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#primaryimage"},"thumbnailUrl":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg","datePublished":"2023-10-22T10:09:15+00:00","dateModified":"2023-12-22T10:18:01+00:00","description":"In this article we are discussing the\u00a0Avoid Landing Page Redirects\u00a0section to improve your Google page speed insights score.","breadcrumb":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#primaryimage","url":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg","contentUrl":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/speed-164063_960_720.jpg","width":960,"height":640,"caption":"A blurred, glowing blue speedometer displays both MPH and km\/h, the needle pointing toward higher speeds for a sense of motion\u2014much like sites that avoid landing page redirects for seamless performance. The digital odometer below is also blurred."},{"@type":"BreadcrumbList","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/avoid-landing-page-redirects-google-page-speed-insights\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/web-design-eastbourne.co.uk\/News\/scripted-art-web-design-latest-news\/"},{"@type":"ListItem","position":2,"name":"Why You Need To Avoid Landing Page Redirects &#8211; Google PageSpeed Insights"}]},{"@type":"WebSite","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#website","url":"https:\/\/web-design-eastbourne.co.uk\/News\/","name":"Scripted Art Web Design News","description":"Grow with us","publisher":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/web-design-eastbourne.co.uk\/News\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#organization","name":"Scripted Art Web Design News","url":"https:\/\/web-design-eastbourne.co.uk\/News\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#\/schema\/logo\/image\/","url":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/HomepageHeader.gif","contentUrl":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-content\/uploads\/2023\/10\/HomepageHeader.gif","width":906,"height":601,"caption":"Scripted Art Web Design News"},"image":{"@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/ScriptedArtWebDesign\/","https:\/\/x.com\/scriptedart","https:\/\/www.youtube.com\/@scriptedart9508","https:\/\/www.pinterest.co.uk\/ScriptedArt\/"]},{"@type":"Person","@id":"https:\/\/web-design-eastbourne.co.uk\/News\/#\/schema\/person\/52653b471130e58f9af7a0b6168fa59a","name":"Keir Chapman","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/secure.gravatar.com\/avatar\/b5ad7430b93b73105b405f21a65e815c83b99649782f316c6ec41fc628b32445?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b5ad7430b93b73105b405f21a65e815c83b99649782f316c6ec41fc628b32445?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b5ad7430b93b73105b405f21a65e815c83b99649782f316c6ec41fc628b32445?s=96&d=mm&r=g","caption":"Keir Chapman"},"description":"I am a self-motivated, passionate website designer and developer. I have over ten years of experience in building websites and have developed a broad skill set including web design, frontend and backend development, and SEO. Using my growing knowledge base I have built my own company (scriptedart.co.uk) creating websites,\u00a0e-commerce stores and producing custom graphics and web app functionality for a range of local businesses.","sameAs":["https:\/\/keirchapman.co.uk\/","https:\/\/www.facebook.com\/keir.chapman.9\/","https:\/\/www.linkedin.com\/in\/keir-chapman-6a138158\/"],"url":"https:\/\/web-design-eastbourne.co.uk\/News\/author\/webdesigneastbournenewsblogadmin7\/"}]}},"_links":{"self":[{"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/posts\/249","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/comments?post=249"}],"version-history":[{"count":3,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/posts\/249\/revisions"}],"predecessor-version":[{"id":836,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/posts\/249\/revisions\/836"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/media\/251"}],"wp:attachment":[{"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/media?parent=249"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/categories?post=249"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/web-design-eastbourne.co.uk\/News\/wp-json\/wp\/v2\/tags?post=249"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}