{"id":1401,"date":"2023-11-04T08:57:57","date_gmt":"2023-11-04T08:57:57","guid":{"rendered":"https:\/\/www.devopsfreelancer.com\/blog\/?p=1401"},"modified":"2023-11-04T09:00:18","modified_gmt":"2023-11-04T09:00:18","slug":"using-of-mod_expires-caching-for-improve-performance","status":"publish","type":"post","link":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/","title":{"rendered":"Using of mod_expires caching for improve Performance ?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What is mod_expires caching ?<\/h2>\n\n\n\n<p>Mod_expires caching is a powerful tool that can be used to improve the performance of your website. By caching static files, mod_expires can reduce the number of requests that need to be made to the server, which can lead to significant performance improvements.<\/p>\n\n\n\n<p>When a user visits your website, their browser will first check to see if it has a cached copy of the static content. If the browser has a cached copy of the content, it will display the cached copy instead of downloading the content from the server. This can save a lot of time and bandwidth, especially for users who are visiting your website for the first time.<\/p>\n\n\n\n<p><strong>To use mod_expires caching, you need to:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Enable the mod_expires module in Apache. You can do this by adding the following line to your Apache configuration file:<\/li>\n<\/ol>\n\n\n\n<pre class=\"wp-block-code\"><code>\/opt\/lampp\/etc\/httpd.conf<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\"><strong> open &#8220;httpd.conf&#8221; file and add below code<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>LoadModule expires_module modules\/mod_expires.so\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"412\" src=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-1024x412.png\" alt=\"\" class=\"wp-image-1402\" style=\"aspect-ratio:2.4854368932038833;width:986px;height:auto\" srcset=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-1024x412.png 1024w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-300x121.png 300w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-768x309.png 768w, https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20.png 1344w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Next go to below path and open httpd-vhosts.conf file<\/strong><\/h2>\n\n\n\n<pre class=\"wp-block-code\"><code>opt\/lampp\/etc\/extra\/httpd-vhosts.conf<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80&gt;\n        ServerAdmin contact@wizbrand.com\n        DocumentRoot \"\/opt\/lampp\/htdocs\/wizbrand\/wz-account-admin-ms\/public\"\n        ServerName wizbrand.com\n\t\tLoadModule expires_module modules\/mod_expires.so\n\t\tExpiresByType image\/png \"access plus 1 hour\"\n\t\tExpiresByType image\/gif \"access plus 1 hour\"\n\t\tExpiresByType image\/jpeg \"access plus 1 hour\"\n\t\tExpiresByType text\/javascript \"access plus 1 week\"\n\t\tExpiresByType text\/css \"access plus 1 month\"\n\t\tExpiresByType text\/html \"access plus 1 day\"\n        Redirect permanent \/ https:\/\/www.wizbrand.com\/\n\t\t\n\t\tAlias \/site-admin \/opt\/lampp\/htdocs\/wizbrand\/wz-siteadmin-ms\/public\n\t\t&lt;Directory  \"\/opt\/lampp\/htdocs\/wizbrand\/wz-siteadmin-ms\/public\"&gt;\n            Options Indexes FollowSymLinks\n            AllowOverride All\n            Allow from all\n            Require all granted\n        &lt;\/Directory&gt;\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Next restart the apache server<\/strong><\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo \/opt\/lampp\/lampp restart<\/code><\/pre>\n\n\n\n<p>These directives will tell Apache to cache PNG, GIF, JPEG, JavaScript, CSS, and HTML files for the specified amount of time. &nbsp;By reducing the number of requests that need to be made to the server,&nbsp;mod_expires can help to improve the scalability of web applications.&nbsp;This means that web applications can handle more concurrent users without experiencing performance problems.<\/p>\n\n\n\n<p>Thanks for learning \ud83d\udc4d\ud83d\udc4d<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What is mod_expires caching ? Mod_expires caching is a powerful tool that can be used to improve the performance of your website. By caching static files, mod_expires&#8230; <\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[549],"tags":[519,488,551],"class_list":["post-1401","post","type-post","status-publish","format-standard","hentry","category-apache","tag-apache-performance","tag-apache-security","tag-mod_expires"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Using of mod_expires caching for improve Performance ? - DevOps Freelancer<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using of mod_expires caching for improve Performance ? - DevOps Freelancer\" \/>\n<meta property=\"og:description\" content=\"What is mod_expires caching ? Mod_expires caching is a powerful tool that can be used to improve the performance of your website. By caching static files, mod_expires...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps Freelancer\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/amitsthakurs\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-04T08:57:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-04T09:00:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-1024x412.png\" \/>\n<meta name=\"author\" content=\"Amit Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/amits_thakurs\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Amit Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/\"},\"author\":{\"name\":\"Amit Kumar\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"headline\":\"Using of mod_expires caching for improve Performance ?\",\"datePublished\":\"2023-11-04T08:57:57+00:00\",\"dateModified\":\"2023-11-04T09:00:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/\"},\"wordCount\":244,\"commentCount\":1,\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image-20-1024x412.png\",\"keywords\":[\"apache-performance\",\"apache-security\",\"mod_expires\"],\"articleSection\":[\"Apache\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/\",\"name\":\"Using of mod_expires caching for improve Performance ? - DevOps Freelancer\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image-20-1024x412.png\",\"datePublished\":\"2023-11-04T08:57:57+00:00\",\"dateModified\":\"2023-11-04T09:00:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image-20.png\",\"contentUrl\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/wp-content\\\/uploads\\\/2023\\\/11\\\/image-20.png\",\"width\":1344,\"height\":541},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/using-of-mod_expires-caching-for-improve-performance\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using of mod_expires caching for improve Performance ?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/\",\"name\":\"DevOps Freelancer\",\"description\":\"We provide DevOps | SRE | DevSecOps | MLOps Freelancing\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/#\\\/schema\\\/person\\\/22ed4bd82dc04200a2ca541b3e35fc5b\",\"name\":\"Amit Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g\",\"caption\":\"Amit Kumar\"},\"description\":\"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\\\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.\",\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/amitsthakurs\\\/\",\"https:\\\/\\\/www.instagram.com\\\/amits_thakurs\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/amits-thakurs\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/amits_thakurs\"],\"url\":\"https:\\\/\\\/www.devopsfreelancer.com\\\/blog\\\/author\\\/amit\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Using of mod_expires caching for improve Performance ? - DevOps Freelancer","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:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/","og_locale":"en_US","og_type":"article","og_title":"Using of mod_expires caching for improve Performance ? - DevOps Freelancer","og_description":"What is mod_expires caching ? Mod_expires caching is a powerful tool that can be used to improve the performance of your website. By caching static files, mod_expires...","og_url":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/","og_site_name":"DevOps Freelancer","article_author":"https:\/\/www.facebook.com\/amitsthakurs\/","article_published_time":"2023-11-04T08:57:57+00:00","article_modified_time":"2023-11-04T09:00:18+00:00","og_image":[{"url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-1024x412.png","type":"","width":"","height":""}],"author":"Amit Kumar","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/amits_thakurs","twitter_misc":{"Written by":"Amit Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#article","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/"},"author":{"name":"Amit Kumar","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"headline":"Using of mod_expires caching for improve Performance ?","datePublished":"2023-11-04T08:57:57+00:00","dateModified":"2023-11-04T09:00:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/"},"wordCount":244,"commentCount":1,"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-1024x412.png","keywords":["apache-performance","apache-security","mod_expires"],"articleSection":["Apache"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/","url":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/","name":"Using of mod_expires caching for improve Performance ? - DevOps Freelancer","isPartOf":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#primaryimage"},"image":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20-1024x412.png","datePublished":"2023-11-04T08:57:57+00:00","dateModified":"2023-11-04T09:00:18+00:00","author":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b"},"breadcrumb":{"@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#primaryimage","url":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20.png","contentUrl":"https:\/\/www.devopsfreelancer.com\/blog\/wp-content\/uploads\/2023\/11\/image-20.png","width":1344,"height":541},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopsfreelancer.com\/blog\/using-of-mod_expires-caching-for-improve-performance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopsfreelancer.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Using of mod_expires caching for improve Performance ?"}]},{"@type":"WebSite","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#website","url":"https:\/\/www.devopsfreelancer.com\/blog\/","name":"DevOps Freelancer","description":"We provide DevOps | SRE | DevSecOps | MLOps Freelancing","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopsfreelancer.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopsfreelancer.com\/blog\/#\/schema\/person\/22ed4bd82dc04200a2ca541b3e35fc5b","name":"Amit Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d76fb4d0f15f7a458f1fd91063b44fbb7e7eb9e724b1c465d885054c2540250f?s=96&d=mm&r=g","caption":"Amit Kumar"},"description":"Hi I am Amit Kumar Thakur Experienced as s Software Developer with a demonstrated history of working in the information technology and services industry. Skilled in HTML, CSS, Bootstrap4, PHP, Laravel-9 , REST API,FB API,Google API, Youtube Api, Bitbucket,Github,Linux and jQuery. Strong engineering professional focused in Computer\/Information Technology Administration and Management. Currently my profile is to Software Developer, analyze the requirement, creating frame for web application, coding and maintenance.","sameAs":["https:\/\/www.facebook.com\/amitsthakurs\/","https:\/\/www.instagram.com\/amits_thakurs\/","https:\/\/www.linkedin.com\/in\/amits-thakurs\/","https:\/\/x.com\/https:\/\/twitter.com\/amits_thakurs"],"url":"https:\/\/www.devopsfreelancer.com\/blog\/author\/amit\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1401","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/comments?post=1401"}],"version-history":[{"count":2,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1401\/revisions"}],"predecessor-version":[{"id":1404,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/posts\/1401\/revisions\/1404"}],"wp:attachment":[{"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/media?parent=1401"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/categories?post=1401"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsfreelancer.com\/blog\/wp-json\/wp\/v2\/tags?post=1401"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}