{"id":494,"date":"2026-02-26T18:35:31","date_gmt":"2026-02-26T13:05:31","guid":{"rendered":"https:\/\/tutorialsmines.com\/blog\/?p=494"},"modified":"2026-02-26T18:35:32","modified_gmt":"2026-02-26T13:05:32","slug":"laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix","status":"publish","type":"post","link":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/","title":{"rendered":"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix"},"content":{"rendered":"\n<p>If you are running a Laravel project on a Linux server (LAMP \/ XAMPP \/ Apache) and your <code>laravel.log<\/code> file is not being created, don\u2019t worry \u2014 this is a very common issue.<\/p>\n\n\n\n<p>In this guide, we will fix the problem step by step.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Problem Overview<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Cache files are being generated<\/li>\n\n\n\n<li>Website is running properly<\/li>\n\n\n\n<li>But <code>storage\/logs\/laravel.log<\/code> is NOT being created<\/li>\n<\/ul>\n\n\n\n<p>In most cases, this happens due to:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Storage permission issues<\/li>\n\n\n\n<li>Missing logs folder<\/li>\n\n\n\n<li>Incorrect logging configuration<\/li>\n\n\n\n<li>Config cache not cleared<\/li>\n<\/ol>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 1: Confirm Laravel Installation<\/h1>\n\n\n\n<p>Go to your project root directory and run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls<\/code><\/pre>\n\n\n\n<p>If you see folders like:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>artisan\napp\nroutes\nstorage\nbootstrap\n<\/code><\/pre>\n\n\n\n<p>Then Laravel is properly installed.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 2: Check if Logs Folder Exists<\/h1>\n\n\n\n<p>Laravel stores logs inside:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>storage\/logs\/<\/code><\/pre>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls storage<\/code><\/pre>\n\n\n\n<p>If you do NOT see a <code>logs<\/code> folder, create it manually:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir storage\/logs<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 3: Fix Storage Permissions (Most Important Step)<\/h1>\n\n\n\n<p>Permission issues are the #1 reason logs don\u2019t generate on Linux.<\/p>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chmod -R 775 storage\nsudo chmod -R 775 bootstrap\/cache<\/code><\/pre>\n\n\n\n<p>For testing purposes only, you can temporarily use:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chmod -R 777 storage\nsudo chmod -R 777 bootstrap\/cache<\/code><\/pre>\n\n\n\n<p>\u26a0\ufe0f Do NOT use 777 in production.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 4: Fix Apache Ownership<\/h1>\n\n\n\n<p>If Apache runs as <code>www-data<\/code>, execute:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R www-data:www-data storage\nsudo chown -R www-data:www-data bootstrap\/cache<\/code><\/pre>\n\n\n\n<p>If you are using XAMPP on Linux, run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo chown -R daemon:daemon storage\nsudo chown -R daemon:daemon bootstrap\/cache<\/code><\/pre>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 5: Check .env Logging Configuration<\/h1>\n\n\n\n<p>Open your <code>.env<\/code> file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano .env<\/code><\/pre>\n\n\n\n<p>Ensure the following lines exist:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>LOG_CHANNEL=stack\nLOG_LEVEL=debug\nAPP_DEBUG=true<\/code><\/pre>\n\n\n\n<p>Save the file.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 6: Clear Laravel Cache &amp; Config<\/h1>\n\n\n\n<p>Sometimes configuration cache prevents logs from generating.<\/p>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>php artisan config:clear\nphp artisan cache:clear\nphp artisan config:cache<\/code><\/pre>\n\n\n\n<p>This step is very important.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Step 7: Manually Test Log Creation<\/h1>\n\n\n\n<p>Add this temporary route inside <code>routes\/web.php<\/code>:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>use Illuminate\\Support\\Facades\\Log;\n\nRoute::get('\/testlog', function () {\n    Log::error('Test log working');\n    return 'done';\n});\n<\/code><\/pre>\n\n\n\n<p>Now open in your browser:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;localhost\/your-project\/public\/testlog<\/code><\/pre>\n\n\n\n<p>Then check:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ls storage\/logs<\/code><\/pre>\n\n\n\n<p>If <code>laravel.log<\/code> appears \u2014 logging is working <\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Advanced Check: config\/logging.php<\/h1>\n\n\n\n<p>Open:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>nano config\/logging.php<\/code><\/pre>\n\n\n\n<p>Make sure this line exists:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>'default' => env('LOG_CHANNEL', 'stack'),<\/code><\/pre>\n\n\n\n<p>Also confirm that the <code>stack<\/code> channel is properly configured.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h1 class=\"wp-block-heading\">Final Conclusion<\/h1>\n\n\n\n<p>In 99% of cases, Laravel log issues happen due to:<\/p>\n\n\n\n<p>\u2714 Storage permission problems<br>\u2714 Missing logs folder<br>\u2714 Incorrect ownership<br>\u2714 Config cache not cleared<\/p>\n\n\n\n<p>Once these are fixed, <code>laravel.log<\/code> will start generating normally.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you are running a Laravel project on a Linux server (LAMP \/ XAMPP \/ Apache) and your laravel.log file is not being created, don\u2019t<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[430],"tags":[723,732,733,727,729,731,730,725,722,721,726,728,724,720],"class_list":["post-494","post","type-post","status-publish","format-standard","hentry","category-laravel","tag-fix-laravel-logging-issue","tag-laravel-env-logging-configuration","tag-laravel-500-error-log-fix","tag-laravel-apache-ownership-fix","tag-laravel-bootstrap-cache-permission-fix","tag-laravel-config-cache-clear-command","tag-laravel-log-file-linux-server","tag-laravel-log-file-not-created","tag-laravel-log-file-not-generating","tag-laravel-log-not-working-on-linux","tag-laravel-log-permission-denied-error","tag-laravel-logging-php-configuration-fix","tag-laravel-storage-logs-folder-missing","tag-laravel-storage-permission-fix"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix - tutorialsmines.com<\/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:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix - tutorialsmines.com\" \/>\n<meta property=\"og:description\" content=\"If you are running a Laravel project on a Linux server (LAMP \/ XAMPP \/ Apache) and your laravel.log file is not being created, don\u2019t\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\" \/>\n<meta property=\"og:site_name\" content=\"tutorialsmines.com\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-26T13:05:31+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-02-26T13:05:32+00:00\" \/>\n<meta name=\"author\" content=\"Maruti_Kr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Maruti_Kr\" \/>\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:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\"},\"author\":{\"name\":\"Maruti_Kr\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e\"},\"headline\":\"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix\",\"datePublished\":\"2026-02-26T13:05:31+00:00\",\"dateModified\":\"2026-02-26T13:05:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\"},\"wordCount\":287,\"commentCount\":0,\"keywords\":[\"Fix Laravel logging issue\",\"Laravel .env logging configuration\",\"Laravel 500 error log fix\",\"Laravel Apache ownership fix\",\"Laravel bootstrap cache permission fix\",\"Laravel config cache clear command\",\"Laravel log file Linux server\",\"Laravel log file not created\",\"Laravel log file not generating\",\"Laravel log not working on Linux\",\"Laravel log permission denied error\",\"Laravel logging.php configuration fix\",\"Laravel storage logs folder missing\",\"Laravel storage permission fix\"],\"articleSection\":[\"Laravel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\",\"url\":\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\",\"name\":\"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix - tutorialsmines.com\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#website\"},\"datePublished\":\"2026-02-26T13:05:31+00:00\",\"dateModified\":\"2026-02-26T13:05:32+00:00\",\"author\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e\"},\"breadcrumb\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorialsmines.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#website\",\"url\":\"https:\/\/tutorialsmines.com\/blog\/\",\"name\":\"tutorialsmines.com\",\"description\":\"tutorialsmines blog site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorialsmines.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e\",\"name\":\"Maruti_Kr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g\",\"caption\":\"Maruti_Kr\"},\"sameAs\":[\"https:\/\/tutorialsmines.com\/blog\"],\"url\":\"https:\/\/tutorialsmines.com\/blog\/author\/maruti_kr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix - tutorialsmines.com","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:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/","og_locale":"en_US","og_type":"article","og_title":"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix - tutorialsmines.com","og_description":"If you are running a Laravel project on a Linux server (LAMP \/ XAMPP \/ Apache) and your laravel.log file is not being created, don\u2019t","og_url":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/","og_site_name":"tutorialsmines.com","article_published_time":"2026-02-26T13:05:31+00:00","article_modified_time":"2026-02-26T13:05:32+00:00","author":"Maruti_Kr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Maruti_Kr","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#article","isPartOf":{"@id":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/"},"author":{"name":"Maruti_Kr","@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e"},"headline":"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix","datePublished":"2026-02-26T13:05:31+00:00","dateModified":"2026-02-26T13:05:32+00:00","mainEntityOfPage":{"@id":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/"},"wordCount":287,"commentCount":0,"keywords":["Fix Laravel logging issue","Laravel .env logging configuration","Laravel 500 error log fix","Laravel Apache ownership fix","Laravel bootstrap cache permission fix","Laravel config cache clear command","Laravel log file Linux server","Laravel log file not created","Laravel log file not generating","Laravel log not working on Linux","Laravel log permission denied error","Laravel logging.php configuration fix","Laravel storage logs folder missing","Laravel storage permission fix"],"articleSection":["Laravel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/","url":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/","name":"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix - tutorialsmines.com","isPartOf":{"@id":"https:\/\/tutorialsmines.com\/blog\/#website"},"datePublished":"2026-02-26T13:05:31+00:00","dateModified":"2026-02-26T13:05:32+00:00","author":{"@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e"},"breadcrumb":{"@id":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tutorialsmines.com\/blog\/laravel-log-file-not-generating-on-linux-server-complete-step-by-step-fix\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorialsmines.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Laravel Log File Not Generating on Linux Server? Complete Step-by-Step Fix"}]},{"@type":"WebSite","@id":"https:\/\/tutorialsmines.com\/blog\/#website","url":"https:\/\/tutorialsmines.com\/blog\/","name":"tutorialsmines.com","description":"tutorialsmines blog site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorialsmines.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e","name":"Maruti_Kr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g","caption":"Maruti_Kr"},"sameAs":["https:\/\/tutorialsmines.com\/blog"],"url":"https:\/\/tutorialsmines.com\/blog\/author\/maruti_kr\/"}]}},"_links":{"self":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts\/494","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/comments?post=494"}],"version-history":[{"count":1,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts\/494\/revisions"}],"predecessor-version":[{"id":495,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts\/494\/revisions\/495"}],"wp:attachment":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/media?parent=494"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/categories?post=494"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/tags?post=494"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}