{"id":2409,"date":"2021-07-01T09:43:34","date_gmt":"2021-07-01T06:43:34","guid":{"rendered":"https:\/\/www.scalahosting.com\/kb\/?p=2409"},"modified":"2025-12-05T16:55:56","modified_gmt":"2025-12-05T14:55:56","slug":"how-to-clear-site-cache","status":"publish","type":"post","link":"https:\/\/www.scalahosting.com\/kb\/how-to-clear-site-cache\/","title":{"rendered":"How to Clear Site Cache?"},"content":{"rendered":"\n<p><span style=\"font-weight: 400;\">Browser caching improves <\/span><a href=\"https:\/\/www.scalahosting.com\/blog\/key-server-performance-metrics-for-actionable-monitoring\/\"><b>server performance<\/b><\/a><span style=\"font-weight: 400;\"> and site speed, making the browsing experiences more fluid and seamless.&nbsp;<\/span><\/p>\n\n\n\n<p><b>Website caching<\/b><span style=\"font-weight: 400;\"> stores web files temporarily in the local browser cache and loads<\/span> <span style=\"font-weight: 400;\">the cached files any time the visitor visits, which helps speed up the website, save server resource consumption and<\/span><b> reduce CPU seconds usage.<\/b><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">You can enable caching on WordPress quickly using plugins like <\/span><b>W3 Cache or <\/b><a href=\"https:\/\/www.scalahosting.com\/blog\/wp-super-cache-wordpress\/\"><b>WP Super Cache<\/b><\/a><span style=\"font-weight: 400;\"> <\/span><span style=\"font-weight: 400;\">and then clear the site cache from your WordPress backend.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">But this article guides you on enabling and clearing site cache automatically via your .htaccess file\u2014a server configuration file that lets users make<\/span><b> changes to their server settings.<\/b><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">So, let\u2019s get started.<\/span><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><b>Setting up Browser Caching Via the .htaccess File<\/b><\/h2>\n\n\n\n<p><span style=\"font-weight: 400;\">You could set up site cache and <\/span><b>auto-clearing by enabling at least two Apache modules<\/b><span style=\"font-weight: 400;\">\u2014<\/span><span style=\"font-weight: 400;\">mod_expires and mod_headers<\/span><span style=\"font-weight: 400;\">\u2014for your server.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">We install the modules on our servers by default, so you don\u2019t have to worry about that, but you could <\/span><a href=\"https:\/\/www.scalahosting.com\/contact-us.html\"><b>contact our support<\/b><\/a><span style=\"font-weight: 400;\"> if you don\u2019t have the modules enabled for your server.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Using the two modules\u2019 site cache directives ensures that you reliably cache all web files. Of course, this is because<\/span><b> older browsers use <\/b><b>mod_expires<\/b><b> and ignore <\/b><b>mod_headers<\/b> <span style=\"font-weight: 400;\">(cache-control), while modern browsers prefer <\/span><span style=\"font-weight: 400;\">mod_headers<\/span><span style=\"font-weight: 400;\">.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">So, let\u2019s examine how to use the two modules\u2019 cache directives to enable and clear site cache.<\/span><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><b>Module <\/b><b>mod_expires<\/b><\/h3>\n\n\n\n<p><span style=\"font-weight: 400;\">Add these directives to your root directory\u2019s .htaccess file to <\/span><b>enable site cache for older browsers.<\/b><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;IfModule mod_expires.c&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresActive On<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A2592000<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;FilesMatch &#8220;\\.(txt|xml|js)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A2592000<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/FilesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;FilesMatch &#8220;\\.(css)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A86400<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/FilesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;FilesMatch &#8220;\\.(flv|ico|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A2592000<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/FilesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;FilesMatch &#8220;\\.(jpg|jpeg|png|gif|swf|webp)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A2592000<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/FilesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/IfModule&gt;<\/span><\/p>\n\n\n\n<p><b>The above code can serve your needs, but you could modify it to accommodate other peculiar needs, like filetype or cache expiry dates, but let&#8217;s interpret what the code means:<\/b><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><span style=\"font-weight: 400;\">The <\/span><b>ExpiresActive On<\/b> <span style=\"font-weight: 400;\">line turns on the expiry rules.<\/span><\/li>\n\n\n\n<li><span style=\"font-weight: 400;\">The <\/span><b>ExpiresDefault A2592000<\/b> <span style=\"font-weight: 400;\">line specifies the default expiry time in seconds, and 2,592,000 seconds is one month. The browser refreshes the cache at the end of the expiration date\u2014that\u2019s monthly.<\/span><\/li>\n\n\n\n<li><b>FilesMatch<\/b><span style=\"font-weight: 400;\"> defines the file type browsers can cache and their expiration dates. The default expiry date kicks in if you don\u2019t specify an expiry date for any file type.<\/span><\/li>\n<\/ul>\n\n\n\n<p><span style=\"font-weight: 400;\">We recommend setting a one-day (that\u2019s 86,400 seconds) <\/span><b>expiration date for CSS file<\/b><span style=\"font-weight: 400;\">s and up to a month (A2592000) files that will likely not change so much soon.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Please don\u2019t forget to place the cache directives between the <\/span><span style=\"font-weight: 400;\">&lt;ifModule mod_expires.c&gt;<\/span><span style=\"font-weight: 400;\"> and <\/span><span style=\"font-weight: 400;\">&lt;ifModule&gt;<\/span><span style=\"font-weight: 400;\"> tags.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Now, let\u2019s examine how to<\/span><b> add the cache directives to the .htaccess file of your root directory<\/b><span style=\"font-weight: 400;\">. But first, here\u2019s how to create a .htaccess file if you don\u2019t have it already.<\/span><\/p>\n\n\n\n<h4 class=\"wp-block-heading\"><b>Step 1: Log into SPanel&#8217;s User Interface.<br><\/b><\/h4>\n\n\n\n<p>The default login URL is <em><strong>https:\/\/yourdomain.com\/spanel <\/strong><\/em>(don&#8217;t forget to replace <em>yourdomain.com <\/em>with your actual domain).<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"453\" height=\"456\" src=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2022\/01\/40.png\" alt=\"How to Clear Site Cache?, Step 1: Log into SPanel&#8217;s User Interface.\" class=\"wp-image-2898\" srcset=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2022\/01\/40.png 453w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2022\/01\/40-298x300.png 298w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2022\/01\/40-150x150.png 150w\" sizes=\"(max-width: 361px) 660px, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 910px, 1140px\" \/><\/figure>\n<\/div>\n\n\n<h4 class=\"wp-block-heading\"><b>Step 2: Open File Manager<\/b><\/h4>\n\n\n\n<p><span style=\"font-weight: 400;\">Locate your control panel\u2019s <\/span><b>FILES<\/b><span style=\"font-weight: 400;\"> section and click <\/span><b>File manager <\/b><span style=\"font-weight: 400;\">to open your home directory.<\/span><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"350\" height=\"448\" src=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image7-3.png\" alt=\"How to Clear Site Cache?, Step 2: Open File Manager\" class=\"wp-image-2412\" srcset=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image7-3.png 350w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image7-3-234x300.png 234w\" sizes=\"(max-width: 361px) 660px, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 910px, 1140px\" \/><\/figure>\n<\/div>\n\n\n<p><span style=\"font-weight: 400;\">Now, click the <\/span><b>public_html<\/b><span style=\"font-weight: 400;\"> folder to open your root domain\u2019s root directory.<\/span><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"654\" height=\"549\" src=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image5-3.png\" alt=\"How to Clear Site Cache?, Step 2: Open File Manager 2\" class=\"wp-image-2410\" srcset=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image5-3.png 654w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image5-3-300x252.png 300w\" sizes=\"(max-width: 361px) 660px, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 910px, 1140px\" \/><\/figure>\n<\/div>\n\n\n<h4 class=\"wp-block-heading\"><b>Step 3: Create the File<\/b><\/h4>\n\n\n\n<p><span style=\"font-weight: 400;\">In the root directory, click the <\/span><b>New File\/Folder<\/b><span style=\"font-weight: 400;\"> icon and select <\/span><b>New Files<\/b><span style=\"font-weight: 400;\">.<\/span><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"545\" height=\"178\" src=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image1-2.png\" alt=\"How to Clear Site Cache?, Step 3: Create the File\" class=\"wp-image-2415\" srcset=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image1-2.png 545w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image1-2-300x98.png 300w\" sizes=\"(max-width: 361px) 660px, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 910px, 1140px\" \/><\/figure>\n<\/div>\n\n\n<p><span style=\"font-weight: 400;\">Enter <\/span><b>.htaccess<\/b><span style=\"font-weight: 400;\"> in the New File pop-up textbox and click the <\/span><b>OK<\/b><span style=\"font-weight: 400;\"> button to create the .htaccess file.<\/span><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"667\" height=\"385\" src=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image8-2.png\" alt=\"How to Clear Site Cache?, Step 3: Create the File 2\" class=\"wp-image-2413\" srcset=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image8-2.png 667w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image8-2-300x173.png 300w\" sizes=\"(max-width: 361px) 660px, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 910px, 1140px\" \/><\/figure>\n<\/div>\n\n\n<h4 class=\"wp-block-heading\"><b>Step 4: Add Your Code<\/b><\/h4>\n\n\n\n<p><span style=\"font-weight: 400;\">Paste your cache directives into your newly created file and <\/span><b>save<\/b><span style=\"font-weight: 400;\">.&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">But if your root directory already has a <\/span><b>.htaccess<\/b><span style=\"font-weight: 400;\"> file, right-click the file to reveal a menu, then choose <\/span><b>Edit<\/b><span style=\"font-weight: 400;\"> to open the editor.<\/span><\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><img decoding=\"async\" width=\"331\" height=\"489\" src=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image2-2.png\" alt=\"How to Clear Site Cache?, Step 4: Add Your Code\" class=\"wp-image-2416\" srcset=\"https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image2-2.png 331w, https:\/\/www.scalahosting.com\/kb\/wp-content\/uploads\/2021\/07\/image2-2-203x300.png 203w\" sizes=\"(max-width: 361px) 660px, (max-width: 767px) 89vw, (max-width: 1000px) 54vw, (max-width: 1071px) 910px, 1140px\" \/><\/figure>\n<\/div>\n\n\n<p><span style=\"font-weight: 400;\">Copy and paste the code into the editor and save.&nbsp;<\/span><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><b>Module <\/b><b>mod_headers <\/b><b>(Cache-Control Header)<\/b><\/h3>\n\n\n\n<p><span style=\"font-weight: 400;\">You could <\/span><b>enable website cache for newer browsers<\/b><span style=\"font-weight: 400;\"> using the mod_header or cache-control directives. The module gives you a lot more flexibility over the type of caching and when to apply it.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Place this code in your domain\u2019s root directory\u2019s .htaccess file to <\/span><b>enable caching with mod_header and set the expiry time.<\/b><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;ifModule mod_headers.c&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresActive On<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\"># Expires after 1 month<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;filesMatch &#8220;.(gif|png|jpg|jpeg|ico)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Header set Cache-Control &#8220;max-age=2592000&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/filesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;FilesMatch &#8220;\\.(flv|pdf|avi|mov|ppt|doc|mp3|wmv|wav|mp4|m4v|ogg|webm|aac)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;&nbsp;&nbsp;Header set Cache-Control &#8220;max-age=2592000, public&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/filesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\"># Set up 2 Hour caching on commonly updated files<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;filesMatch &#8220;.(xml|txt|html|js|css)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A7200<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Header append Cache-Control &#8220;private, must-revalidate&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/filesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\"># Force no caching for dynamic files<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;filesMatch &#8220;.(php|cgi|pl|htm)$&#8221;&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">ExpiresDefault A0<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Header set Cache-Control &#8220;no-store, no-cache, must-revalidate, max-age=0&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Header set Pragma &#8220;no-cache&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/filesMatch&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">You could also <\/span><b>modify the directives to suit your needs.&nbsp;<\/b><\/p>\n\n\n\n<p><b>Using mod_header gives you greater control flexibility over the expiry date and how browsers cache your files, let\u2019s examine how:<\/b><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><b>ExpiresActive On<\/b><span style=\"font-weight: 400;\"> activates the expiry rules.<\/span><\/li>\n\n\n\n<li><b>ExpiresDefault <\/b><span style=\"font-weight: 400;\">specifies the default expiry time in seconds<\/span><\/li>\n\n\n\n<li><b>FilesMatch<\/b><span style=\"font-weight: 400;\"> allows you to match file type with their extensions<\/span><\/li>\n\n\n\n<li><b>max-age=2592000<\/b> <span style=\"font-weight: 400;\">lets you<\/span> <span style=\"font-weight: 400;\">set the expiry time with the matched file types. Also, notice that we specified two hours for commonly updated files and one month for less updated files.<\/span><\/li>\n\n\n\n<li><span style=\"font-weight: 400;\">Using the \u201c<\/span><b>public<\/b><span style=\"font-weight: 400;\">\u201d directive lets you permit the browsers to cache the files locally in their shared cache folder, which may be accessible to the logged-in users and others.<\/span><\/li>\n\n\n\n<li><span style=\"font-weight: 400;\">\u201c<\/span><b>private<\/b><span style=\"font-weight: 400;\">\u201d directive tells the browsers to cache the files locally in a user private cache store.<\/span><\/li>\n\n\n\n<li><span style=\"font-weight: 400;\">You could use the \u201c<\/span><b>must-revalidate<\/b><span style=\"font-weight: 400;\">\u201d to permit browsers to consider the max-age variable for the cached files and server copies to determine the best file to fetch.<\/span><\/li>\n\n\n\n<li><span style=\"font-weight: 400;\">Using the<\/span><span style=\"font-weight: 400;\"> &#8220;<\/span><b>no-store, no-cache, must-revalidate, max-age=0<\/b><span style=\"font-weight: 400;\">&#8221; <\/span><span style=\"font-weight: 400;\">directive<\/span> <span style=\"font-weight: 400;\">enables you to<\/span> <span style=\"font-weight: 400;\">force browsers not to cache and store any matched file type but to fetch the server copy.<\/span><\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\"><b>Disabling Site Caching<\/b><\/h2>\n\n\n\n<p><span style=\"font-weight: 400;\">You could disable site caching by <\/span><b>replacing your <\/b><b>mod_expires<\/b><b> and <\/b><b>mod_headers<\/b><b> directives <\/b><span style=\"font-weight: 400;\">with these lines &#8211;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">#Turns off the expires headers for Apache<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;IfModule mod_expires.c&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;&nbsp;ExpiresActive Off<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/IfModule&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\"># Disable Caching<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;IfModule mod_headers.c&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;&nbsp;&nbsp;&nbsp;Header set Cache-Control &#8220;no-cache, no-store, must-revalidate&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;&nbsp;&nbsp;&nbsp;Header set Pragma &#8220;no-cache&#8221;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&nbsp;&nbsp;&nbsp;&nbsp;Header set Expires 0<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">&lt;\/IfModule&gt;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">Kindly note that<\/span><b> disabling your site caching will roll back all the gains of site caching<\/b><span style=\"font-weight: 400;\">, including super-fast loading, fluid browsing, lesser bandwidth usage, and others.<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">So, always proceed with caution.<\/span><\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><b>Need Support<\/b><\/h2>\n\n\n\n<p><span style=\"font-weight: 400;\">Enabling site cache and auto-clearing via the .htaccess could be tricky.&nbsp;<\/span><\/p>\n\n\n\n<p><span style=\"font-weight: 400;\">So, if you <\/span><b>need assistance setting it up or have questions relating to the topic,<\/b><span style=\"font-weight: 400;\"> reach out to our support, and we\u2019ll be available to help.<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Browser caching improves server performance and site speed, making the browsing experiences more fluid and seamless.&nbsp; Website caching stores web files temporarily in the local browser cache and loads the cached files any time the visitor visits, which helps speed up the website, save server resource consumption and reduce CPU seconds usage. You can enable [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_seopress_robots_primary_cat":"none","_seopress_titles_title":"","_seopress_titles_desc":"","_seopress_robots_index":"","footnotes":""},"categories":[34],"tags":[],"class_list":["post-2409","post","type-post","status-publish","format-standard","hentry","category-web-hosting"],"acf":[],"_links":{"self":[{"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/posts\/2409","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/comments?post=2409"}],"version-history":[{"count":7,"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/posts\/2409\/revisions"}],"predecessor-version":[{"id":5917,"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/posts\/2409\/revisions\/5917"}],"wp:attachment":[{"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/media?parent=2409"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/categories?post=2409"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.scalahosting.com\/kb\/wp-json\/wp\/v2\/tags?post=2409"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}