{"id":4447,"date":"2019-07-23T15:16:09","date_gmt":"2019-07-23T19:16:09","guid":{"rendered":"https:\/\/www.globo.tech\/learning-center\/?p=4447"},"modified":"2019-07-25T18:04:09","modified_gmt":"2019-07-25T22:04:09","slug":"how-to-optimize-wordpress-performance-on-linux","status":"publish","type":"post","link":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/","title":{"rendered":"How to Optimize WordPress Site Performance on Ubuntu 18.04"},"content":{"rendered":"\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"628\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg\" alt=\"Optimize WordPress site on Ubuntu 18.04\" class=\"wp-image-4464\"\/><figcaption>Optimize WordPress site on Ubuntu 18.04<\/figcaption><\/figure>\n\n\n\n<p>WordPress is the most widely used and the leading Content Management System (CMS) that powers more than 30% of the website around the world. How to &#8220;decrease page load time&#8221; and &#8220;speed up the WordPress site&#8221; are one of the hot topic these days. The owner of every website will want their websites and blogs to be the fastest. As per Google algorithm, a slow loading site can damage your SEO rankings. So optimizing the WordPress site for better performance is very challenging part of any webmaster.<\/p>\n\n\n\n<p>In this tutorial, we will explain some tips and tricks on how to optimize your WordPress site for better performance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Requirements<\/h2>\n\n\n\n<ul class=\"wp-block-list\"><li>A server running Ubuntu 18.04 with <a href=\"https:\/\/www.globo.tech\/learning-center\/how-to-install-wordpress-on-centos-7\/\">WordPress installed<\/a>.<\/li><li>A root password is configured on your server. <\/li><\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Update WordPress<\/h2>\n\n\n\n<p>It is very important for any webmasters to update the WordPress and its plugins and themes to the latest version. This will increase your site performance and decrease the vulnerabilities.<\/p>\n\n\n\n<p>To do so, log in to your WordPress admin, go to the <strong>Dashboard &gt; Updates<\/strong>. You should see the following page:<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Update-WordPress.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Update-WordPress.png\" alt=\"\" class=\"wp-image-4497\" width=\"638\" height=\"339\"\/><\/a><\/figure>\n\n\n\n<p>In the above page, you should see that WordPress and all your plugins and themes are up-to-date. If any updates are available, you should see the message &#8220;An updated version of WordPress is available&#8221; in the above page.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"NEEDREVIEWS-HowtoOptimizeWordpressPerformanceonUbuntu18.04-CleanUpWordPressDatabase\">Clean Up WordPress Database<\/h2>\n\n\n\n<p>WordPress database accumulates a lot of extra data including, trashed comments, spam comments, unused plugins data and many unnecessary data. It is recommended to clean up your WordPress database regularly to remove all unnecessary data to improve your website performance. Regular clean-ups reduce your database size and speed up your backup process. It is a good way to optimize your WordPress site.<\/p>\n\n\n\n<p>To clean up your database, you will need to install and activate WP-Sweep plugin. After installing WP-Sweep plugin, go to the&nbsp;<strong>Tool &gt; Sweep<\/strong>. You should see the following page:<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Sweep.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Sweep.png\" alt=\"\" class=\"wp-image-4498\" width=\"642\" height=\"336\"\/><\/a><\/figure>\n\n\n\n<figure class=\"wp-block-image is-resized\"><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Sweep2.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Sweep2.png\" alt=\"\" class=\"wp-image-4499\" width=\"643\" height=\"340\"\/><\/a><\/figure>\n\n\n\n<p>You can clean up your data one by one or click on the&nbsp;<strong>sweep all<\/strong>&nbsp;button on the bottom of the page to clean up all the data in your WordPress database.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"NEEDREVIEWS-HowtoOptimizeWordpressPerformanceonUbuntu18.04-EnableGzipCompression\">Enable Gzip Compression<\/h2>\n\n\n\n<p>Enabling Gzip compression in WordPress will reduce server response time and volume of data sent by the server to a web browser.&nbsp; GZIP is a file format and application that can be used for file compression and decompression. GZIP compression allows you to reduce the size of your HTML, stylesheets, and JavaScript files. This will significantly reduce the amount of time to download the resource, reduce data usage and improve the page load time.<\/p>\n\n\n\n<p>You can enable Gzip compression by editing .htaccess file from your WordPress root directory. Enabling Gzip compression in WordPress using .htaccess file will reduce server response time and volume of data sent by the server to a web browser.<\/p>\n\n\n\n<p>Go to the WordPress root directory and Open your .htaccess file with the following command:<\/p>\n\n\n\n<p><code>nano .htaccess <\/code><\/p>\n\n\n\n<p>Add the following lines for WordPress running with <strong>Apache<\/strong> web server:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>&lt;IfModule mod_gzip.c&gt;\nmod_gzip_on Yes\nmod_gzip_dechunk Yes\nmod_gzip_item_include file \\.(html?|txt|css|js|php|pl)$\nmod_gzip_item_include handler ^cgi-script$\nmod_gzip_item_include mime ^text\/.*\nmod_gzip_item_include mime ^application\/x-javascript.*\nmod_gzip_item_exclude mime ^image\/.*\nmod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.*\n&lt;\/IfModule&gt;<\/code><\/pre>\n\n\n\n<p>Or, add the following lines for WordPress running with <strong>Nginx<\/strong> web server:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\"><code>gzip on;<br>gzip_comp_level 2;<br>gzip_http_version 1.0;<br>gzip_proxied any;<br>gzip_min_length 1100;<br>gzip_buffers 16 8k;<br>gzip_types text\/plain text\/html text\/css application\/x-javascript text\/xml application\/xml application\/xml+rss text\/javascript;<br>gzip_disable \"MSIE [1-6].(?!.*SV1)\";<br>gzip_vary on;<\/code><\/pre>\n\n\n\n<p>Save and close the file, when you are finished.<\/p>\n\n\n\n<p>After enabling Gzip Compression, you can check whether the compression is enabled or not by visiting the website\u00a0<a rel=\"noreferrer noopener\" href=\"https:\/\/smallseotools.com\/check-gzip-compression\/\" target=\"_blank\"><strong>https:\/\/smallseotools.com\/check-gzip-compression<\/strong>\/<\/a><\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Check-Gzip-1.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Check-Gzip-1.png\" alt=\"\" class=\"wp-image-4504\" width=\"648\" height=\"232\"\/><\/a><\/figure>\n\n\n\n<p>Provide your website URL and click on the\u00a0<strong>Check<\/strong>\u00a0button. You should see the following page: <\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Result-Gzip-1.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Result-Gzip-1.png\" alt=\"\" class=\"wp-image-4505\" width=\"647\" height=\"304\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"NEEDREVIEWS-HowtoOptimizeWordpressPerformanceonUbuntu18.04-SpiteCommentsIntoPages\">Split Comments Into Pages<\/h2>\n\n\n\n<p>If your blog is getting a lot of comments, this can be causing page leg. The blog posts with a lot of comments load slower than other posts. Many comments increase your server load time and also decrease your SEO rankings. So it is recommended to break the comment section into pages to save off the time it takes for them to load.<\/p>\n\n\n\n<p>To split the comments, go to&nbsp;<strong>Settings &gt; Discussions<\/strong>. Then, choose the number of comments you want per page.<\/p>\n\n\n\n<figure class=\"wp-block-image is-resized\"><a href=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Split-Comments.png\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/Split-Comments.png\" alt=\"\" class=\"wp-image-4502\" width=\"643\" height=\"308\"\/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"NEEDREVIEWS-HowtoOptimizeWordpressPerformanceonUbuntu18.04-UseaCDN\">Use a CDN<\/h2>\n\n\n\n<p>A content delivery network (CDN) is a geographically distributed servers and data centers. CDN provides high availability and high performance by delivering pages and other web content to a user based on the user&#8217;s geographic locations. The users visit your site from the different locations around the world. The website loading speed will differ if the users are located far away from where your site is hosted. Content Delivery Networks (CDN) keeps a copy of your website in different data centers located in different locations and serve the web page to a user from the nearest location.<\/p>\n\n\n\n<p>So it is recommended to add your website to CDN like, Cloudflare, MaxCDN, Rackspace and Cachefly.<\/p>\n\n\n\n<p>In the above tutorial, we have learned some tips and tricks to optimize your WordPress site. I hope you have now enough knowledge to boost your WordPress performance. This will also increase your rankings in the SERPs and improve the experience of your visitors. Feel free to ask me if you have any questions.<\/p>\n<!-- AddThis Advanced Settings generic via filter on the_content --><!-- AddThis Share Buttons generic via filter on the_content -->","protected":false},"excerpt":{"rendered":"<p>Here is a few tips on how to optimize WordPress Site that is running on a Linux server.<!-- AddThis Advanced Settings generic via filter on get_the_excerpt --><!-- AddThis Share Buttons generic via filter on get_the_excerpt --><\/p>\n","protected":false},"author":3,"featured_media":4464,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[70],"tags":[120,123,100,20],"class_list":["post-4447","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-hosting","tag-optimize","tag-site","tag-ubuntu","tag-wordpress"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Optimize WordPress Site Performance on Ubuntu 18.04 - Globo.Tech<\/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.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Optimize WordPress Site Performance on Ubuntu 18.04 - Globo.Tech\" \/>\n<meta property=\"og:description\" content=\"Here is a few tips on how to optimize WordPress Site that is running on a Linux server.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"Globo.Tech\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-23T19:16:09+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-07-25T22:04:09+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"GloboTech Communications\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"GloboTech Communications\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/\",\"name\":\"How to Optimize WordPress Site Performance on Ubuntu 18.04 - Globo.Tech\",\"isPartOf\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg\",\"datePublished\":\"2019-07-23T19:16:09+00:00\",\"dateModified\":\"2019-07-25T22:04:09+00:00\",\"author\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#primaryimage\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg\",\"contentUrl\":\"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg\",\"width\":1200,\"height\":628,\"caption\":\"Optimize WordPress site on Ubuntu 18.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.globo.tech\/learning-center\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Optimize WordPress Site Performance on Ubuntu 18.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#website\",\"url\":\"https:\/\/www.globo.tech\/learning-center\/\",\"name\":\"Globo.Tech\",\"description\":\"Welcome to the Official Globo.Tech Learning Center\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87\",\"name\":\"GloboTech Communications\",\"sameAs\":[\"http:\/\/www.gtcomm.net\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Optimize WordPress Site Performance on Ubuntu 18.04 - Globo.Tech","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.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/","og_locale":"en_US","og_type":"article","og_title":"How to Optimize WordPress Site Performance on Ubuntu 18.04 - Globo.Tech","og_description":"Here is a few tips on how to optimize WordPress Site that is running on a Linux server.","og_url":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/","og_site_name":"Globo.Tech","article_published_time":"2019-07-23T19:16:09+00:00","article_modified_time":"2019-07-25T22:04:09+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg","type":"image\/jpeg"}],"author":"GloboTech Communications","twitter_misc":{"Written by":"GloboTech Communications","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/","url":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/","name":"How to Optimize WordPress Site Performance on Ubuntu 18.04 - Globo.Tech","isPartOf":{"@id":"https:\/\/www.globo.tech\/learning-center\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#primaryimage"},"image":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg","datePublished":"2019-07-23T19:16:09+00:00","dateModified":"2019-07-25T22:04:09+00:00","author":{"@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87"},"breadcrumb":{"@id":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#primaryimage","url":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg","contentUrl":"https:\/\/www.globo.tech\/learning-center\/wp-content\/uploads\/2019\/07\/OptimizeWordPressUbuntu.jpg","width":1200,"height":628,"caption":"Optimize WordPress site on Ubuntu 18.04"},{"@type":"BreadcrumbList","@id":"https:\/\/www.globo.tech\/learning-center\/how-to-optimize-wordpress-performance-on-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.globo.tech\/learning-center\/"},{"@type":"ListItem","position":2,"name":"How to Optimize WordPress Site Performance on Ubuntu 18.04"}]},{"@type":"WebSite","@id":"https:\/\/www.globo.tech\/learning-center\/#website","url":"https:\/\/www.globo.tech\/learning-center\/","name":"Globo.Tech","description":"Welcome to the Official Globo.Tech Learning Center","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.globo.tech\/learning-center\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.globo.tech\/learning-center\/#\/schema\/person\/e17784b37f4a4f49b7bc611847912e87","name":"GloboTech Communications","sameAs":["http:\/\/www.gtcomm.net"]}]}},"_links":{"self":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4447","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/comments?post=4447"}],"version-history":[{"count":17,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4447\/revisions"}],"predecessor-version":[{"id":4508,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/posts\/4447\/revisions\/4508"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media\/4464"}],"wp:attachment":[{"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/media?parent=4447"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/categories?post=4447"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.globo.tech\/learning-center\/wp-json\/wp\/v2\/tags?post=4447"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}