{"id":4434,"date":"2025-08-14T04:00:05","date_gmt":"2025-08-14T04:00:05","guid":{"rendered":"https:\/\/thumbtube.com\/blog\/?p=4434"},"modified":"2025-08-14T04:05:01","modified_gmt":"2025-08-14T04:05:01","slug":"forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it","status":"publish","type":"post","link":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/","title":{"rendered":"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It"},"content":{"rendered":"<p>You&#8217;ve just set up Apache on your server. You&#8217;re pumped. You type your server&#8217;s IP or domain into your browser\u2026 but instead of your beautiful new site, you get a cold, boring message:<\/p>\n<p><i><strong>&#8220;Forbidden: You don\u2019t have permission to access on this server.&#8221;<\/strong><\/i><\/p>\n<p>Wait, what? Don&#8217;t panic. This is common. Let&#8217;s fix it together\u2014step by step, and yes, we&#8217;ll make it fun. Ready?<\/p>\n<h2>Step 1: What\u2019s Actually Going On?<\/h2>\n<p>This error usually means Apache doesn\u2019t think it should serve your files. That\u2019s it\u2014not your website\u2019s fault. Not the internet&#8217;s fault. Just some settings gone wonky.<\/p>\n<p>Apache is a rule-follower. Super strict. It checks:<\/p>\n<ul>\n<li><strong>File permissions<\/strong><\/li>\n<li><strong>Directory settings<\/strong><\/li>\n<li><strong>Configuration files (like httpd.conf or apache2.conf)<\/strong><\/li>\n<\/ul>\n<p>If just one of these says &#8220;nope,&#8221; you get the Forbidden error.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/white-box-on-brown-wooden-table-apache-error-message-forbidden-screen-browser-403-page.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/white-box-on-brown-wooden-table-apache-error-message-forbidden-screen-browser-403-page.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/white-box-on-brown-wooden-table-apache-error-message-forbidden-screen-browser-403-page-300x200.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/white-box-on-brown-wooden-table-apache-error-message-forbidden-screen-browser-403-page-1024x683.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/white-box-on-brown-wooden-table-apache-error-message-forbidden-screen-browser-403-page-768x512.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Step 2: Check Permissions Like a File Detective<\/h2>\n<p>Permissions help Apache figure out who can read which files.<\/p>\n<p>Hop into your terminal and go to your site&#8217;s root folder. Maybe something like:<\/p>\n<pre><code>cd \/var\/www\/html<\/code><\/pre>\n<p>Run this command to check permissions:<\/p>\n<pre><code>ls -l<\/code><\/pre>\n<p>You\u2019ll see things like <code>-rw-r--r--<\/code> or <code>drwxr-xr-x<\/code>. Looks weird, but here&#8217;s the simple version:<\/p>\n<ul>\n<li><strong>r<\/strong> = read<\/li>\n<li><strong>w<\/strong> = write<\/li>\n<li><strong>x<\/strong> = execute<\/li>\n<\/ul>\n<p>Make sure your folders have at least <code>r-x<\/code> for &#8216;others&#8217;. Like this:<\/p>\n<pre><code>chmod 755 \/var\/www\/html<\/code><\/pre>\n<p>And for files:<\/p>\n<pre><code>chmod 644 \/var\/www\/html\/index.html<\/code><\/pre>\n<p>Done? On to the next step.<\/p>\n<h2>Step 3: The Magic of Apache Config Files<\/h2>\n<p>Now, let\u2019s peek inside Apache\u2019s config to make sure it\u2019s actually allowed to serve your files.<\/p>\n<p>Locate your config file\u2014it could be:<\/p>\n<ul>\n<li><code>\/etc\/apache2\/apache2.conf<\/code> (Debian\/Ubuntu)<\/li>\n<li><code>\/etc\/httpd\/conf\/httpd.conf<\/code> (CentOS\/Fedora)<\/li>\n<\/ul>\n<p>Look for a block like this inside:<\/p>\n<pre><code>&lt;Directory \/var\/www\/&gt;\n    Options Indexes FollowSymLinks\n    AllowOverride All\n    Require all granted\n&lt;\/Directory&gt;<\/code><\/pre>\n<p><strong>Important:<\/strong> That last line\u2014<code>Require all granted<\/code>\u2014tells Apache to allow access. If it\u2019s missing or says something else like <code>Require all denied<\/code>, Apache slams the door shut.<\/p>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"722\" src=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-black-and-white-photo-of-the-word-comm-apache-config-example-directory-config-code-snippet.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-black-and-white-photo-of-the-word-comm-apache-config-example-directory-config-code-snippet.jpg 1080w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-black-and-white-photo-of-the-word-comm-apache-config-example-directory-config-code-snippet-300x201.jpg 300w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-black-and-white-photo-of-the-word-comm-apache-config-example-directory-config-code-snippet-1024x685.jpg 1024w, https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-black-and-white-photo-of-the-word-comm-apache-config-example-directory-config-code-snippet-768x513.jpg 768w\" sizes=\"(max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Step 4: Check That the File Is Actually There<\/h2>\n<p>Ever lost your glasses when they were on your head? Happens with web files too.<\/p>\n<p>Make sure your index file exists! Look for something like:<\/p>\n<ul>\n<li><code>index.html<\/code><\/li>\n<li><code>index.php<\/code><\/li>\n<\/ul>\n<p>No index file = Apache gets confused = 403 Forbidden.<\/p>\n<p>To add one quickly, try:<\/p>\n<pre><code>echo \"Hello World\" &gt; \/var\/www\/html\/index.html<\/code><\/pre>\n<h2>Step 5: Restart Apache and Celebrate<\/h2>\n<p>Now you\u2019ve fixed permissions and your config is looking good. Time to restart Apache:<\/p>\n<pre><code>sudo systemctl restart apache2       # On Ubuntu\/Debian\nsudo systemctl restart httpd         # On CentOS\/Fedora<\/code><\/pre>\n<p>Refresh your browser. Does your site finally show up? YES? High five! \ud83c\udf89<\/p>\n<h2>Still Seeing the 403?<\/h2>\n<p>If you&#8217;re still getting blocked, try these bonus tips:<\/p>\n<ul>\n<li><strong>Check Apache error logs<\/strong>:<br \/>\n    <br \/><code>tail -f \/var\/log\/apache2\/error.log<\/code>\n  <\/li>\n<li><strong>Check for .htaccess files<\/strong>: They might be hiding secret deny rules.<\/li>\n<li><strong>AppArmor or SELinux<\/strong>: These can also cause permission issues, especially on CentOS or Fedora.<\/li>\n<\/ul>\n<h2>Wrap Up<\/h2>\n<p>That &#8220;Forbidden&#8221; error is annoying. But now, you&#8217;re smarter than Apache \ud83d\ude0e<\/p>\n<p>Remember:<\/p>\n<ol>\n<li>Check your file and folder permissions.<\/li>\n<li>Review your Apache config.<\/li>\n<li>Make sure your files are really there!<\/li>\n<\/ol>\n<p>With a little patience (and a few terminal commands), you\u2019ve gone from puzzled to pro.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>You&#8217;ve just set up Apache on your server. You&#8217;re pumped. You type your server&#8217;s IP &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It\" class=\"read-more button\" href=\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#more-4434\" aria-label=\"Read more about Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It\">Read More<\/a><\/p>\n","protected":false},"author":78,"featured_media":4437,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[8],"tags":[],"class_list":["post-4434","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-guides","infinite-scroll-item","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-25","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It - ThumbTube<\/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:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It - ThumbTube\" \/>\n<meta property=\"og:description\" content=\"You&#8217;ve just set up Apache on your server. You&#8217;re pumped. You type your server&#8217;s IP ... Read More\" \/>\n<meta property=\"og:url\" content=\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/\" \/>\n<meta property=\"og:site_name\" content=\"ThumbTube\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-14T04:00:05+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-14T04:05:01+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"720\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Ethan Martinez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ethan Martinez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/\",\"url\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/\",\"name\":\"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It - ThumbTube\",\"isPartOf\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg\",\"datePublished\":\"2025-08-14T04:00:05+00:00\",\"dateModified\":\"2025-08-14T04:05:01+00:00\",\"author\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\"},\"breadcrumb\":{\"@id\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#primaryimage\",\"url\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg\",\"contentUrl\":\"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg\",\"width\":1080,\"height\":720},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/thumbtube.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#website\",\"url\":\"https:\/\/thumbtube.com\/blog\/\",\"name\":\"ThumbTube\",\"description\":\"Blog\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/thumbtube.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583\",\"name\":\"Ethan Martinez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g\",\"caption\":\"Ethan Martinez\"},\"description\":\"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.\",\"url\":\"https:\/\/thumbtube.com\/blog\/author\/ethan\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It - ThumbTube","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:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/","og_locale":"en_US","og_type":"article","og_title":"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It - ThumbTube","og_description":"You&#8217;ve just set up Apache on your server. You&#8217;re pumped. You type your server&#8217;s IP ... Read More","og_url":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/","og_site_name":"ThumbTube","article_published_time":"2025-08-14T04:00:05+00:00","article_modified_time":"2025-08-14T04:05:01+00:00","og_image":[{"width":1080,"height":720,"url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg","type":"image\/jpeg"}],"author":"Ethan Martinez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ethan Martinez","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/","url":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/","name":"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It - ThumbTube","isPartOf":{"@id":"https:\/\/thumbtube.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#primaryimage"},"image":{"@id":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#primaryimage"},"thumbnailUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg","datePublished":"2025-08-14T04:00:05+00:00","dateModified":"2025-08-14T04:05:01+00:00","author":{"@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583"},"breadcrumb":{"@id":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#primaryimage","url":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg","contentUrl":"https:\/\/thumbtube.com\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-words-on-it-apache-error-message-forbidden-screen-browser-403-page.jpg","width":1080,"height":720},{"@type":"BreadcrumbList","@id":"https:\/\/thumbtube.com\/blog\/forbidden-you-dont-have-permission-to-access-on-this-server-after-apache-setup-fix-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/thumbtube.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Forbidden: You Don\u2019t Have Permission to Access on This Server After Apache Setup? Fix It"}]},{"@type":"WebSite","@id":"https:\/\/thumbtube.com\/blog\/#website","url":"https:\/\/thumbtube.com\/blog\/","name":"ThumbTube","description":"Blog","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/thumbtube.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/4fe17b14e96eaa537d646cb9ae441583","name":"Ethan Martinez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/thumbtube.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/993fbfe1588a77db452e8ea37ed7fcba?s=96&d=mm&r=g","caption":"Ethan Martinez"},"description":"I'm Ethan Martinez, a tech writer focused on cloud computing and SaaS solutions. I provide insights into the latest cloud technologies and services to keep readers informed.","url":"https:\/\/thumbtube.com\/blog\/author\/ethan\/"}]}},"_links":{"self":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/4434"}],"collection":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/users\/78"}],"replies":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/comments?post=4434"}],"version-history":[{"count":1,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/4434\/revisions"}],"predecessor-version":[{"id":4449,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/posts\/4434\/revisions\/4449"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media\/4437"}],"wp:attachment":[{"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/media?parent=4434"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/categories?post=4434"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/thumbtube.com\/blog\/wp-json\/wp\/v2\/tags?post=4434"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}