{"id":3932,"date":"2021-10-07T10:51:05","date_gmt":"2021-10-07T09:51:05","guid":{"rendered":"https:\/\/unihost.com\/blog\/?p=3932"},"modified":"2026-01-09T13:05:43","modified_gmt":"2026-01-09T11:05:43","slug":"9-ways-to-speed-up-the-loading-of-your-website","status":"publish","type":"post","link":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/","title":{"rendered":"9 ways to speed up the loading of your website"},"content":{"rendered":"<p class=\"head-text\">Imagine you\u2019ve made the most beautiful website this side of Mikiyako Kobayashi art gallery, but now that you did it, it lags so damn much! And despite the awesome design, the user experience is absolute hell. If that\u2019s what happened \u2014 it\u2019s time to do something about it, because according to Amazon, Walmart, Akamai and Aberdeen Group each 1% of website\u2019s loading speed yields at least 1% of conversions.<\/p>\n<h2>1. HTTP-requests are evil<\/h2>\n<figure id=\"attachment_410\" aria-describedby=\"caption-attachment-410\" style=\"width: 437px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-410 size-full\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/HTTP_request1.png\" alt=\"An outline of the HTTP request. Browser requests the data, server processes the request and sends the data back.\" width=\"437\" height=\"179\" \/ title=\"9 ways to speed up the loading of your website - Image 1\"><figcaption id=\"caption-attachment-410\" class=\"wp-caption-text\">An outline of the HTTP request. Browser requests the data, server processes the request and sends the data back.<\/figcaption><\/figure>\n<p>Think about it. Each time a user loads your website, besides the page itself, they end up requesting every media file (picture, animation, audio, etc.) on it. Even if the file is minute, it takes time for the request to get to the server, and for the server to process it. Of course, some of this may be alleviated by using cache and GZip compression \u2014 and we will discuss this option later \u2014 but right now let\u2019s ask a different question. Why do you need all these media files?<\/p>\n<p>And if you have no idea \u2014 that&#8217;s where you should start.<\/p>\n<ol>\n<li>Cut down on the images. Unless you are running some sort of image gallery, which is a whole different beast, the number of high-resolution images on your webpage should be as low as possible. \u0415ven the galleries tend to use compressed miniatures as long as they can get away with it and load the full-resolution image only when it is the only notable thing on the page.<\/li>\n<li>Are you using some simple graphics? Transform them into CSS whenever possible. Also, about CSS \u2014 try to combine them whenever you can. A single stylesheet always loads faster, than two similar ones. There is one caveat to that, but we will discuss it a bit lower.<\/li>\n<li>Reduce scripts. And if you need them \u2014 put them at the bottom of the page, so that the user can get at least the web page itself loaded, showing them the progress is being made, while they are waiting for the script to do its magic.<\/li>\n<\/ol>\n<p>And if you are still making new pages for your website \u2014 make these rules your design guidelines. Trust me, it\u2019s better to do something well at the beginning, than try to optimize an already published page.<\/p>\n<h2>2. Gotta cache them all!<\/h2>\n<figure id=\"attachment_411\" aria-describedby=\"caption-attachment-411\" style=\"width: 441px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-411 size-full\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/HTTP_caching_if_none_match.png\" alt=\"An outline of the HTTP request with eTags. Each time browser requests a new element, it checks its eTag and downloads it only if it has changed.\" width=\"441\" height=\"181\" \/ title=\"9 ways to speed up the loading of your website - Image 2\"><figcaption id=\"caption-attachment-411\" class=\"wp-caption-text\">An outline of the HTTP request with eTags. Each time browser requests a new element, it checks its eTag and downloads it only if it has changed.<\/figcaption><\/figure>\n<p>Caching is a great thing, because it allows your users\u2019 browsers to load only the parts of the web page that changed since their last visit. Well, ideally. In practice, it is you who determines what parts of the webpage should be marked as cacheable and how long will the cache last. Overextensive caching may break the website\u2019s functionality, but concurrently, usage of cache files will let you shave a couple of seconds from every loading of your website after the first one.<\/p>\n<p>There are a couple of ways to make sure, that the cached files will not interfere with the new ones. The best method is by using ETags, which makes sure that the user always has the most relevant version of the cached file, but it is definitely not the most optimized one.<\/p>\n<figure id=\"attachment_412\" aria-describedby=\"caption-attachment-412\" style=\"width: 419px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-412 size-full\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/HTTP_caching_expires.png\" alt=\"An outline of the HTTP request with cache expiration dates set up. Each time browser requests a new element, it checks the expiration date and loads the element from cache if it is within it.\" width=\"419\" height=\"186\" \/ title=\"9 ways to speed up the loading of your website - Image 3\"><figcaption id=\"caption-attachment-412\" class=\"wp-caption-text\">An outline of the HTTP request with cache expiration dates set up. Each time browser requests a new element, it checks the expiration date and loads the element from cache if it is within it.<\/figcaption><\/figure>\n<p style=\"text-align: left;\">Most of the time you can get by with more efficient max-age variables that determine how long the user is allowed to keep his cache. Do not set it too high, since they will still take some space on the user\u2019s hard drive, but do not set it too low either. Preferable settings are 1 week for the high-resolution content and 1 year for the CSS, low-res pictures, etc. And if you want to use caching on the files that may change in the future \u2014 that\u2019s when you break out the ETags.<\/p>\n<h2>3. GZip it up!<\/h2>\n<figure id=\"attachment_413\" aria-describedby=\"caption-attachment-413\" style=\"width: 436px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-413\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/HTTP_request_compressed.png\" alt=\"An outline of the HTTP request with GZip compression. Each time browser requests a new page, the server compresses the page using GZIP before sending it to the browser.\" width=\"436\" height=\"177\" \/ title=\"9 ways to speed up the loading of your website - Image 4\"><figcaption id=\"caption-attachment-413\" class=\"wp-caption-text\">An outline of the HTTP request with GZip compression. Each time browser requests a new page, the server compresses the page using GZIP before sending it to the browser.<\/figcaption><\/figure>\n<p>Let\u2019s face it, HTML is redundant. Every html-tag has a closing argument that looks almost the same. Thus, the symbols combinations repeat throughout the document constantly. Same thing with content \u2014 a vocabulary of any text is usually much smaller than the overall word count.<\/p>\n<p>Which means that those (hyper)texts can be optimized with modern compression techniques. For example, GZip. While it doesn\u2019t work with images, audio and other media \u2014 they are usually already compressed with far more efficient, specially developed algorithms \u2014 this compression can drastically reduce the size of the page itself.<\/p>\n<p>All computers released in the last 15 years, can compress and decompress GZip on the go, which means that you should use it. 90% of the Internet traffic is compressed with GZip and the number will only grow as we continue to hit the limits of the bandwidth. So <strong>enabling this feature on your server\/hosting is a must<\/strong>. You can do this easily from cPanel or any other control panel you use.<\/p>\n<p>And if you do not use any panels and prefer to use the console \u2014 look up the wiki for your server system for terms like GZip or HTTP Compression. Chances are, you&#8217;ll find it \u2014 for example, it is definitely supported in Apache, IIS and NGINX. Apache even has a pre-compression mode which allows you to save up on the server resources.<\/p>\n<h2>4. Know your PNGs<\/h2>\n<figure id=\"attachment_414\" aria-describedby=\"caption-attachment-414\" style=\"width: 535px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-414 size-full\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/JPGvsWebPComparison_1-e1626186543450.png\" alt=\"Comparison between JPG and WEBM. Notice the smaller filesize on the right picture.\" width=\"535\" height=\"177\" \/ title=\"9 ways to speed up the loading of your website - Image 5\"><figcaption id=\"caption-attachment-414\" class=\"wp-caption-text\">Comparison between JPG and WEBM. Notice the smaller filesize on the right picture.<\/figcaption><\/figure>\n<p>GZip is a great tool for compressing HTML, but as we mentioned earlier, media is much trickier. There&#8217;s no single magic format efficient in transferring media across the web \u2014 instead, it is a choice between a couple of compromises.<\/p>\n<p>For images, the longest still standing standard is JPEG. It is crappy, because you end up with a lot of artifacts (distortions) in the image, but at the same time it is highly efficient when it comes to filesizes.<\/p>\n<p>PNG is yet another popular option, because while it is less efficient than JPEG, it leaves less artifacts and has some direct advantages for web-design, like an ability to have transparency in the image.<\/p>\n<p>Since 2010, Google has been pushing to replace both PNG and JPEG with their own WebP standard, and to be fair \u2014 it is pretty impressive both in quality and efficiency sides. I wouldn\u2019t recommend using it in the mobile versions of your website, since not all mobiles have the ability to decode WebP with hardware acceleration and may end up slowing down a lot, but for a desktop version WebP is a great choice. Especially if your website is using only primary colors.<\/p>\n<p>Also, keep in mind the resolution of the image. Basically, the higher the resolution \u2014 the better the result, but at the same time the size of the image grows exponentially with its resolution. The best choice would be to make the images Retina-ready. Which means, upload them in two times the size you intend them to be viewed at.<\/p>\n<p>You can also try to decrease the color depth for the simple images, although this might not always pay off. As for photos and other art \u2014 that\u2019s completely up to you, but 4096&#215;3072 is a good landmark, if you make sure that there\u2019s only one full-sized image on the given page.<\/p>\n<p>Finally, learn HTML. We will elaborate on this in the next paragraph, but for now \u2014 make sure to fill in the <strong>img src<\/strong> tags. If you don\u2019t \u2014 the page will lag or maybe even break.<\/p>\n<p>As for the audio, if you intend to have one on your website, nothing has changed in the last decade. MP3 is the king of the actual streamable music, while audio effects are better signed off to OGG.<\/p>\n<h2>5. Code, do you speak it?<\/h2>\n<p style=\"text-align: left;\">WYSIWYG-editors are an amazing tool for HTML, in fact, I\u2019m writing this article with one such tool called Remarkable. But I will be the first one to say \u2014 they are not that great. They considerably simplify the life of a coder, and allow someone who has no idea how to code produce commendable results. But their markdown is far from perfect or even simply efficient.<\/p>\n<p>There are some tools that will help you with optimizing the code provided by your editor \u2014 <a href=\"https:\/\/chrome.google.com\/webstore\/detail\/google-pagespeed-insights\/edbkhhpodjkbgenodomhfoldapghpddk\" target=\"_blank\" rel=\"nofollow noopener nofollow noopener noreferrer\">PageSpeed Insights for Chrome<\/a> will help with HTML, <a href=\"https:\/\/chrome.google.com\/webstore\/detail\/css-compressor-and-minifi\/jekjpmdfijepjghgpjodgpgjpgfkdapi?hl=en\" target=\"_blank\" rel=\"nofollow noopener nofollow noopener noreferrer\">CSS Compressor<\/a> will be of great help with CSS and <a href=\"https:\/\/chrome.google.com\/webstore\/detail\/closure-extension\/pfbfgemhjkgfmbpdfbdobandhkglmehc?hl=en\" target=\"_blank\" rel=\"nofollow noopener nofollow noopener noreferrer\">Closure Compiler<\/a> is a must for JavaScript \u2014 but the results they produce still far too often fall short from what a skilled coder can do. So while you can definitely get by using them, you also should invest in getting at least some experience in coding. Trust me, it will pay off.<\/p>\n<p>One important thing often forgotten even by experienced web-designers is inline CSS. It\u2019s a faux pas for a reason. Keeping all the CSS-markdown in one external stylesheet and simply calling its parts when they are needed will greatly decrease the size of the page and its overall stability. Also, it will make your HTML code much easier to read.<\/p>\n<h2>6. OMG, look, it\u2019s the header!<\/h2>\n<figure id=\"attachment_416\" aria-describedby=\"caption-attachment-416\" style=\"width: 800px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-416 size-full\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/06e4922bc2-e1492095308990.png\" alt=\"ou won\u2019t see anything like this on Unihost, but that\u2019s how we would do it if we had to.\" width=\"800\" height=\"240\" \/ title=\"9 ways to speed up the loading of your website - Image 6\"><figcaption id=\"caption-attachment-416\" class=\"wp-caption-text\">You won\u2019t see anything like this on Unihost, but that\u2019s how we would do it if we had to.<\/figcaption><\/figure>\n<p>Sometimes, it is impossible to do something fast. For example, it may be a huge page with a lot of stuff going on, and you just cannot make it load in 2 seconds. Well, here\u2019s a tip \u2014 fake it till you make it.<\/p>\n<p>By using a second (although, technically it will be first) external stylesheet that contains only the contents of the top of your page, you will show your user that at least something is happening and they just have to wait a little, until their browser processes the rest. Even if the problem is not with a browser at all, and it is your media-heavy page still transfers its data. It\u2019s the same principle as with making the scripts load last, to be honest \u2014 the page is still not ready to be used, but at least it looks like it can, and that\u2019s all that matters.<\/p>\n<h2>7. Re-re-re-redirection<\/h2>\n<figure id=\"attachment_417\" aria-describedby=\"caption-attachment-417\" style=\"width: 1686px\" class=\"wp-caption aligncenter\"><img loading=\"lazy\" decoding=\"async\" class=\"wp-image-417 size-full\" src=\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/MobileRedirect_New.png\" alt=\"An example of the redirect to the mobile website, set up in the hosting\u2019s dashboard.\" width=\"1686\" height=\"1332\" \/ title=\"9 ways to speed up the loading of your website - Image 7\"><figcaption id=\"caption-attachment-417\" class=\"wp-caption-text\">An example of the redirect to the mobile website, set up in the hosting dashboard.<\/figcaption><\/figure>\n<p>How did you implement the mobile version of your website? If it is a responsive CSS design or a dynamic serving system that feeds the users different HTML and CSS depending on their browser \u2014 you did well. But if it is a completely separate mobile URL to which your desktop site redirects mobile customers \u2014 that was not a good decision.<\/p>\n<p>Basically, a redirect is a yet another series of requests that slow down the experience tremendously. Thankfully, if you are still using them, you will not have to redo your whole website \u2014 although, honestly, maybe you should, since responsive design is amazing. Anyway, you can alleviate at least some of the situation with a Googlebot that automatically redirects the mobile visitors using an HTTP-redirect, which is much more efficient than a traditional one. It will require some changes to markup, but nothing too severe.<\/p>\n<h2>8. Just change a server<\/h2>\n<p>There\u2019s a lot you can do, but sometimes it is not enough. Then, the only way to continue growing is to start somewhere else. I ran into this at one point, when despite all my efforts, I simply couldn\u2019t break a 3-second mark. So upgrading your server, or maybe even changing a hosting company might be what you will have to do.<\/p>\n<h2>9. HTTP\/2 and the age of the new Web<\/h2>\n<p>Not so long ago, HTTP 2.0 (a.k.a. HTTP\/2) has been released to the public. And, to be frank, it is a great improvement over the original protocol \u2014 even if it has some drawbacks, like mandatory encryption.<\/p>\n<p>What is the most interesting in our case, is that HTTP-requests have become much more efficient in the new protocol \u2014 which means that the majority of aforementioned advices are no longer needed.<\/p>\n<p>Unfortunately, some of the hosting companies do not support HTTP\/2 at the moment. So until you can transfer, you are stuck with jumping through aforementioned hoops. But for those lucky ones, who have this option \u2014 we will review HTTP\/2 next week and give you some pointers on to what changes you will have to make to your website.<\/p>\n<h2>It\u2019s more what you\u2019d call guidelines\u2026<\/h2>\n<p>Do not take these points as the holy Grail of web-optimization. This was not the aim of this article and, frankly, I am way underqualified to write something like that.There definitely are solutions that completely defy my statements and still work.<\/p>\n<p>But if you have zero clue on where to start with your website\u2019s speed-up \u2014 I hope my guide have been useful to you.<\/p>\n<!--themify_builder_content-->\n<div id=\"themify_builder_content-3932\" data-postid=\"3932\" class=\"themify_builder_content themify_builder_content-3932 themify_builder tf_clear\">\n    <\/div>\n<!--\/themify_builder_content-->\n","protected":false},"excerpt":{"rendered":"<p>Imagine you\u2019ve made the most beautiful website this side of Mikiyako Kobayashi art gallery, but now that you did it, it lags so damn much! And despite the awesome design, the user experience is absolute hell. If that\u2019s what happened \u2014 it\u2019s time to do something about it, because according to Amazon, Walmart, Akamai and [&hellip;]<\/p>\n","protected":false},"author":7,"featured_media":1264,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-3932","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-webdev","has-post-title","has-post-date","has-post-category","has-post-tag","has-post-comment","has-post-author",""],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>9 ways to speed up the loading of your website - Unihost.com Blog<\/title>\n<meta name=\"description\" content=\"Your beautiful website is unbearably slow? Learn why this happens and how you can make your website fast and snappy once more.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"9 ways to speed up the loading of your website - Unihost.com Blog\" \/>\n<meta property=\"og:description\" content=\"Your beautiful website is unbearably slow? Learn why this happens and how you can make your website fast and snappy once more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\" \/>\n<meta property=\"og:site_name\" content=\"Unihost.com Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/unihost\" \/>\n<meta property=\"article:published_time\" content=\"2021-10-07T09:51:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-01-09T11:05:43+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/unihost.com\/blog\/minio.php?2017\/03\/logo7.png\" \/>\n\t<meta property=\"og:image:width\" content=\"200\" \/>\n\t<meta property=\"og:image:height\" content=\"34\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Alex Shevchuk\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@unihost\" \/>\n<meta name=\"twitter:site\" content=\"@unihost\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Alex Shevchuk\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\"},\"author\":{\"name\":\"Alex Shevchuk\",\"@id\":\"https:\/\/unihost.com\/blog\/#\/schema\/person\/92e127fbc9a0ce4ca134886442a54474\"},\"headline\":\"9 ways to speed up the loading of your website\",\"datePublished\":\"2021-10-07T09:51:05+00:00\",\"dateModified\":\"2026-01-09T11:05:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\"},\"wordCount\":2230,\"publisher\":{\"@id\":\"https:\/\/unihost.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg\",\"articleSection\":[\"WebDev\"],\"inLanguage\":\"en\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\",\"url\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\",\"name\":\"9 ways to speed up the loading of your website - Unihost.com Blog\",\"isPartOf\":{\"@id\":\"https:\/\/unihost.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg\",\"datePublished\":\"2021-10-07T09:51:05+00:00\",\"dateModified\":\"2026-01-09T11:05:43+00:00\",\"description\":\"Your beautiful website is unbearably slow? Learn why this happens and how you can make your website fast and snappy once more.\",\"breadcrumb\":{\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#breadcrumb\"},\"inLanguage\":\"en\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage\",\"url\":\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg\",\"contentUrl\":\"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg\",\"caption\":\"speed\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Unihost\",\"item\":\"https:\/\/unihost.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Blog\",\"item\":\"https:\/\/unihost.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"9 ways to speed up the loading of your website\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/unihost.com\/blog\/#website\",\"url\":\"https:\/\/unihost.com\/blog\/\",\"name\":\"Unihost.com Blog\",\"description\":\"Web hosting, Online marketing and Web News\",\"publisher\":{\"@id\":\"https:\/\/unihost.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/unihost.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/unihost.com\/blog\/#organization\",\"name\":\"Unihost\",\"alternateName\":\"Unihost\",\"url\":\"https:\/\/unihost.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/unihost.com\/blog\/minio.php?2026\/01\/minio.png\",\"contentUrl\":\"https:\/\/unihost.com\/blog\/minio.php?2026\/01\/minio.png\",\"width\":300,\"height\":300,\"caption\":\"Unihost\"},\"image\":{\"@id\":\"https:\/\/unihost.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/unihost\",\"https:\/\/x.com\/unihost\",\"https:\/\/instagram.com\/unihost\",\"https:\/\/www.linkedin.com\/company\/unihost-com\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/unihost.com\/blog\/#\/schema\/person\/92e127fbc9a0ce4ca134886442a54474\",\"name\":\"Alex Shevchuk\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en\",\"@id\":\"https:\/\/unihost.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/37068b7d8dd334ae091ca77c586798519f5157257b25f6bc5dbe0daa5f828510?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/37068b7d8dd334ae091ca77c586798519f5157257b25f6bc5dbe0daa5f828510?s=96&d=mm&r=g\",\"caption\":\"Alex Shevchuk\"},\"description\":\"Alex Shevchuk is the Head of DevOps with extensive experience in building, scaling, and maintaining reliable cloud and on-premise infrastructure. He specializes in automation, high-availability systems, CI\/CD pipelines, and DevOps best practices, helping teams deliver stable and scalable production environments. LinkedIn: https:\/\/www.linkedin.com\/in\/alex1shevchuk\/\",\"url\":\"https:\/\/unihost.com\/blog\/author\/alex-shevchuk\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"9 ways to speed up the loading of your website - Unihost.com Blog","description":"Your beautiful website is unbearably slow? Learn why this happens and how you can make your website fast and snappy once more.","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:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/","og_locale":"en_US","og_type":"article","og_title":"9 ways to speed up the loading of your website - Unihost.com Blog","og_description":"Your beautiful website is unbearably slow? Learn why this happens and how you can make your website fast and snappy once more.","og_url":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/","og_site_name":"Unihost.com Blog","article_publisher":"https:\/\/www.facebook.com\/unihost","article_published_time":"2021-10-07T09:51:05+00:00","article_modified_time":"2026-01-09T11:05:43+00:00","og_image":[{"width":200,"height":34,"url":"https:\/\/unihost.com\/blog\/minio.php?2017\/03\/logo7.png","type":"image\/png"}],"author":"Alex Shevchuk","twitter_card":"summary_large_image","twitter_creator":"@unihost","twitter_site":"@unihost","twitter_misc":{"Written by":"Alex Shevchuk","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#article","isPartOf":{"@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/"},"author":{"name":"Alex Shevchuk","@id":"https:\/\/unihost.com\/blog\/#\/schema\/person\/92e127fbc9a0ce4ca134886442a54474"},"headline":"9 ways to speed up the loading of your website","datePublished":"2021-10-07T09:51:05+00:00","dateModified":"2026-01-09T11:05:43+00:00","mainEntityOfPage":{"@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/"},"wordCount":2230,"publisher":{"@id":"https:\/\/unihost.com\/blog\/#organization"},"image":{"@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg","articleSection":["WebDev"],"inLanguage":"en"},{"@type":"WebPage","@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/","url":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/","name":"9 ways to speed up the loading of your website - Unihost.com Blog","isPartOf":{"@id":"https:\/\/unihost.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage"},"image":{"@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage"},"thumbnailUrl":"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg","datePublished":"2021-10-07T09:51:05+00:00","dateModified":"2026-01-09T11:05:43+00:00","description":"Your beautiful website is unbearably slow? Learn why this happens and how you can make your website fast and snappy once more.","breadcrumb":{"@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#breadcrumb"},"inLanguage":"en","potentialAction":[{"@type":"ReadAction","target":["https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/"]}]},{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#primaryimage","url":"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg","contentUrl":"https:\/\/unihost.com\/blog\/minio.php?2017\/04\/speed.svg","caption":"speed"},{"@type":"BreadcrumbList","@id":"https:\/\/unihost.com\/blog\/9-ways-to-speed-up-the-loading-of-your-website\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Unihost","item":"https:\/\/unihost.com\/"},{"@type":"ListItem","position":2,"name":"Blog","item":"https:\/\/unihost.com\/blog\/"},{"@type":"ListItem","position":3,"name":"9 ways to speed up the loading of your website"}]},{"@type":"WebSite","@id":"https:\/\/unihost.com\/blog\/#website","url":"https:\/\/unihost.com\/blog\/","name":"Unihost.com Blog","description":"Web hosting, Online marketing and Web News","publisher":{"@id":"https:\/\/unihost.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/unihost.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en"},{"@type":"Organization","@id":"https:\/\/unihost.com\/blog\/#organization","name":"Unihost","alternateName":"Unihost","url":"https:\/\/unihost.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/unihost.com\/blog\/minio.php?2026\/01\/minio.png","contentUrl":"https:\/\/unihost.com\/blog\/minio.php?2026\/01\/minio.png","width":300,"height":300,"caption":"Unihost"},"image":{"@id":"https:\/\/unihost.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/unihost","https:\/\/x.com\/unihost","https:\/\/instagram.com\/unihost","https:\/\/www.linkedin.com\/company\/unihost-com"]},{"@type":"Person","@id":"https:\/\/unihost.com\/blog\/#\/schema\/person\/92e127fbc9a0ce4ca134886442a54474","name":"Alex Shevchuk","image":{"@type":"ImageObject","inLanguage":"en","@id":"https:\/\/unihost.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/37068b7d8dd334ae091ca77c586798519f5157257b25f6bc5dbe0daa5f828510?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/37068b7d8dd334ae091ca77c586798519f5157257b25f6bc5dbe0daa5f828510?s=96&d=mm&r=g","caption":"Alex Shevchuk"},"description":"Alex Shevchuk is the Head of DevOps with extensive experience in building, scaling, and maintaining reliable cloud and on-premise infrastructure. He specializes in automation, high-availability systems, CI\/CD pipelines, and DevOps best practices, helping teams deliver stable and scalable production environments. LinkedIn: https:\/\/www.linkedin.com\/in\/alex1shevchuk\/","url":"https:\/\/unihost.com\/blog\/author\/alex-shevchuk\/"}]}},"_links":{"self":[{"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/posts\/3932","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/comments?post=3932"}],"version-history":[{"count":2,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/posts\/3932\/revisions"}],"predecessor-version":[{"id":3934,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/posts\/3932\/revisions\/3934"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/media\/1264"}],"wp:attachment":[{"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/media?parent=3932"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/categories?post=3932"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/unihost.com\/blog\/wp-json\/wp\/v2\/tags?post=3932"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}