{"id":15184,"date":"2026-02-27T08:35:33","date_gmt":"2026-02-27T08:35:33","guid":{"rendered":"https:\/\/www.bodhost.com\/kb\/?p=15184"},"modified":"2026-02-27T08:35:33","modified_gmt":"2026-02-27T08:35:33","slug":"how-to-create-symbolic-soft-link-in-linux-using-ln-command","status":"publish","type":"post","link":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/","title":{"rendered":"How to Create Symbolic Soft Link in Linux using ln Command"},"content":{"rendered":"<p>A symbolic link (also called a soft link or symlink) is a special file that points to another file or directory. Think of it like a shortcut: when you open the link, the system follows it to the real target. Symlinks are useful for shorter paths, shared configs, version switching, and keeping multiple paths pointing to one location.<\/p>\n<h4><strong>Types of Links in Linux<\/strong><\/h4>\n<p>Linux supports two kinds of links:<\/p>\n<ol>\n<li><strong>Symbolic (soft) links: <\/strong>A lightweight pointer to a path. If the original file is moved or deleted, the link breaks.<\/li>\n<li><strong>Hard links:<\/strong> Another directory entry for the same file data (inode). If the original name is removed, the data still exists via the hard link. Hard links cannot point to directories (in most setups) or across filesystems.<\/li>\n<\/ol>\n<p>&nbsp;<\/p>\n<h4><strong>How Do I Create a Soft (Symbolic) Link?<\/strong><\/h4>\n<p>Use the ln command with the -s option:<\/p>\n<pre><!--ScriptorStartFragment--><span style=\"color: #0000ff;\">ln -s &lt;target&gt; &lt;link_name&gt;<\/span><!--ScriptorEndFragment--><\/pre>\n<p>&lt;target&gt;: the real file or directory you want to point to<br \/>\n&lt;link_name&gt;: the name (path) of the symlink you want to create<\/p>\n<p><strong>Example<\/strong><\/p>\n<pre><!--ScriptorStartFragment--><span style=\"color: #0000ff;\">ln -s \/opt\/app\/current\/config.yaml ~\/config.yaml<\/span><!--ScriptorEndFragment--><\/pre>\n<p>This creates a symlink ~\/config.yaml that points to \/opt\/app\/current\/config.yaml.<\/p>\n<p><strong>Tip:<\/strong> Prefer relative targets when linking inside the same project tree:<\/p>\n<pre><!--ScriptorStartFragment--><span style=\"color: #0000ff;\">ln -s ..\/bin\/tool .\/tool<\/span><!--ScriptorEndFragment--><\/pre>\n<p>Relative links remain valid if the whole folder is moved elsewhere.<\/p>\n<h4><strong>How to Use the ln Command<\/strong><\/h4>\n<p>Common options you\u2019ll actually use:<\/p>\n<ul>\n<li>-s \u2014 create a symbolic link (without this, ln makes a hard link)<\/li>\n<li>-f \u2014 force: overwrite an existing destination path<\/li>\n<li>-n \u2014 treat link destination as a normal file if it\u2019s a symlink to a directory (handy with -f)<\/li>\n<li>-v \u2014 verbose: show what was done<\/li>\n<li>-T \u2014 treat the destination as a normal file, not a directory (prevents \u201cplace inside dir\u201d behavior)<\/li>\n<\/ul>\n<p><strong>Examples:<\/strong><\/p>\n<p><!--ScriptorStartFragment--><\/p>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\"># Basic symlink\r\nln -s \/var\/www\/html\/index.html ~\/index.html\r\n\r\n# Verbose output\r\nln -sv \/usr\/local\/bin\/mytool \/usr\/bin\/mytool\r\n\r\n# Force overwrite an existing link or file\r\nln -sfn \/etc\/nginx\/sites-available\/app.conf \/etc\/nginx\/sites-enabled\/app.conf<\/span><!--ScriptorEndFragment--><\/pre>\n<div><\/div>\n<div>\n<h4><strong>Create a Symlink to a Directory<\/strong><\/h4>\n<p>You create directory symlinks the same way:<\/p>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\">ln -s \/data\/backups \/mnt\/backups<\/span><\/pre>\n<p>Now \/mnt\/backups behaves like a pointer to \/data\/backups.<\/p>\n<p><strong>Version switching example:<\/strong><\/p>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\">ln -sfn \/opt\/node-v20 \/opt\/node\r\n# \/opt\/node now points to \/opt\/node-v20<\/span><\/pre>\n<div><\/div>\n<\/div>\n<div>\n<h4><strong>How to Overwrite an Existing Symlink<\/strong><\/h4>\n<p>If the link already exists and you want to repoint it:<\/p>\n<pre><span style=\"color: #0000ff;\">ln -sfn &lt;new_target&gt; &lt;existing_link&gt;<\/span><\/pre>\n<ul>\n<li>-f removes the existing path<\/li>\n<li>-n treats destination as a file (even if it\u2019s a symlink to a dir)<\/li>\n<li>-s keeps it symbolic<\/li>\n<\/ul>\n<p><strong>Example:<\/strong><\/p>\n<pre><span style=\"color: #0000ff;\">ln -sfn \/opt\/app\/releases\/2026-02-11 \/opt\/app\/current<\/span><\/pre>\n<h4><strong>How to Delete or Remove Symlinks<\/strong><\/h4>\n<p>Removing a symlink does not delete the target. It only removes the pointer.<\/p>\n<p><strong>Use any of the following:<\/strong><\/p>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\"># Remove by name\r\nrm mylink\r\n\r\n# Unlink explicitly\r\nunlink mylink\r\n\r\n# Remove a symlink to a directory (don\u2019t use a trailing slash)\r\nrm \/path\/to\/linkdir<\/span><\/pre>\n<\/div>\n<div><\/div>\n<div><strong>Important:<\/strong> Don\u2019t add a trailing slash when removing a symlink to a directory:<\/div>\n<div><\/div>\n<div>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\"># Correct\r\nrm link_to_dir\r\n\r\n# Avoid (may attempt to remove directory contents)\r\nrm -r link_to_dir\/<\/span><\/pre>\n<\/div>\n<div><\/div>\n<div>\n<h4><strong>Verify and Inspect Symlinks<\/strong><\/h4>\n<p>List with details:<\/p>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\">ls -l\r\n# output example: mylink -&gt; \/real\/path\/target<\/span><\/pre>\n<\/div>\n<div><\/div>\n<div><strong>Show the symlink target:<\/strong><\/div>\n<div><\/div>\n<div>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\">readlink mylink\r\nreadlink -f mylink\u00a0\u00a0\u00a0 # prints the absolute, canonical path<\/span><\/pre>\n<\/div>\n<div><\/div>\n<div><strong>Find broken symlinks:<\/strong><\/div>\n<div><\/div>\n<div>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\">find \/path -xtype l\r\n# or to list only broken links:\r\nfind \/path -L -type l<\/span><\/pre>\n<\/div>\n<div><\/div>\n<div>\n<h4><strong>Practical Tips &amp; Gotchas<\/strong><\/h4>\n<ul>\n<li>Relative vs absolute: Use relative paths for links inside a project to make moves easier. Use absolute paths for system\u2011wide links.<\/li>\n<li>Permissions: You need write permission to the directory where the link will live (not the target).<\/li>\n<li>Cross\u2011filesystem: Symlinks can point across different disks or mounts. Hard links cannot.<\/li>\n<li>Directories: Hard links to directories are generally restricted for safety. Symlinks are the standard for directories.<\/li>\n<li>Trailing slashes: Avoid trailing \/ on the link name when creating or deleting; it can change behavior.<\/li>\n<li>Backups &amp; packaging: Some tools may archive the link itself, others may follow it\u2014check your tool\u2019s flags (e.g., tar\u2019s &#8211;dereference).<\/li>\n<\/ul>\n<h4><strong>Getting Help for ln<\/strong><\/h4>\n<p>Built\u2011in help and manual pages provide the authoritative reference:<\/p>\n<pre class=\"scriptor-paragraph\"><span style=\"color: #0000ff;\">ln --help\r\nman ln<\/span><\/pre>\n<\/div>\n<div><\/div>\n<div>These will show all options supported on your system (GNU coreutils may differ slightly from other Unix variants).<\/div>\n<div><\/div>\n<div>\n<h4><strong>Conclusion<\/strong><\/h4>\n<p>Symlinks are a simple, powerful way to redirect paths, share resources, and manage versions without copying files. Use ln -s to create them, -sfn to safely overwrite them, and rm or unlink to remove them. Verify with ls -l or readlink. With a few careful habits (relative paths, no trailing slashes, and the right flags, you\u2019ll keep your links reliable and your filesystem tidy.<\/p>\n<p>Learn <a href=\"https:\/\/www.bodhost.com\/kb\/how-to-redirect-stdout-and-stderr-to-file-in-bash\/\" target=\"_blank\" rel=\"noopener\"><em>how to redirect stdout and stderr to a file in Bash<\/em><\/a>, capture logs efficiently, debug faster, and streamline script output management.<\/p>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>A symbolic link (also called a soft link or symlink) is a special file that points to another file or directory. Think of it like a shortcut: when you open&hellip;<\/p>\n<p><a href=\"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/\" class=\"more-link\">Read More<\/a><\/p>\n","protected":false},"author":5,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[837],"tags":[1700,1699],"class_list":["post-15184","post","type-post","status-publish","format-standard","hentry","category-tutorial","tag-ln-command","tag-symbolic-soft-link"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Create Symbolic Soft Link in Linux using ln Command<\/title>\n<meta name=\"description\" content=\"Create symbolic soft links in Linux using the ln command to connect files or directories, and manage paths without duplicating data.\" \/>\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.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create Symbolic Soft Link in Linux using ln Command\" \/>\n<meta property=\"og:description\" content=\"Create symbolic soft links in Linux using the ln command to connect files or directories, and manage paths without duplicating data.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/\" \/>\n<meta property=\"og:site_name\" content=\"Knowledge Base - bodHOST\" \/>\n<meta property=\"article:published_time\" content=\"2026-02-27T08:35:33+00:00\" \/>\n<meta name=\"author\" content=\"Paul Lopez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Paul Lopez\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/\"},\"author\":{\"name\":\"Paul Lopez\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\"},\"headline\":\"How to Create Symbolic Soft Link in Linux using ln Command\",\"datePublished\":\"2026-02-27T08:35:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/\"},\"wordCount\":642,\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"keywords\":[\"ln Command\",\"Symbolic Soft Link\"],\"articleSection\":[\"Tutorial\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/\",\"name\":\"How to Create Symbolic Soft Link in Linux using ln Command\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\"},\"datePublished\":\"2026-02-27T08:35:33+00:00\",\"description\":\"Create symbolic soft links in Linux using the ln command to connect files or directories, and manage paths without duplicating data.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Tutorial\",\"item\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/category\\\/tutorial\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Create Symbolic Soft Link in Linux using ln Command\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#website\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\"},\"alternateName\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#organization\",\"name\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"contentUrl\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/Profile-Pic.png\",\"width\":240,\"height\":240,\"caption\":\"Web Hosting Knowledge Base | bodHOST Hosting FAQ\"},\"image\":{\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/#\\\/schema\\\/person\\\/566ccff9a2fae4af852be8097b179813\",\"name\":\"Paul Lopez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g\",\"caption\":\"Paul Lopez\"},\"url\":\"https:\\\/\\\/www.bodhost.com\\\/kb\\\/author\\\/paullopez\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Create Symbolic Soft Link in Linux using ln Command","description":"Create symbolic soft links in Linux using the ln command to connect files or directories, and manage paths without duplicating data.","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.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/","og_locale":"en_US","og_type":"article","og_title":"How to Create Symbolic Soft Link in Linux using ln Command","og_description":"Create symbolic soft links in Linux using the ln command to connect files or directories, and manage paths without duplicating data.","og_url":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/","og_site_name":"Knowledge Base - bodHOST","article_published_time":"2026-02-27T08:35:33+00:00","author":"Paul Lopez","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Paul Lopez","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/#article","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/"},"author":{"name":"Paul Lopez","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813"},"headline":"How to Create Symbolic Soft Link in Linux using ln Command","datePublished":"2026-02-27T08:35:33+00:00","mainEntityOfPage":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/"},"wordCount":642,"publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"keywords":["ln Command","Symbolic Soft Link"],"articleSection":["Tutorial"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/","url":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/","name":"How to Create Symbolic Soft Link in Linux using ln Command","isPartOf":{"@id":"https:\/\/www.bodhost.com\/kb\/#website"},"datePublished":"2026-02-27T08:35:33+00:00","description":"Create symbolic soft links in Linux using the ln command to connect files or directories, and manage paths without duplicating data.","breadcrumb":{"@id":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.bodhost.com\/kb\/how-to-create-symbolic-soft-link-in-linux-using-ln-command\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Tutorial","item":"https:\/\/www.bodhost.com\/kb\/category\/tutorial\/"},{"@type":"ListItem","position":2,"name":"How to Create Symbolic Soft Link in Linux using ln Command"}]},{"@type":"WebSite","@id":"https:\/\/www.bodhost.com\/kb\/#website","url":"https:\/\/www.bodhost.com\/kb\/","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","description":"","publisher":{"@id":"https:\/\/www.bodhost.com\/kb\/#organization"},"alternateName":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.bodhost.com\/kb\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.bodhost.com\/kb\/#organization","name":"Web Hosting Knowledge Base | bodHOST Hosting FAQ","url":"https:\/\/www.bodhost.com\/kb\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/","url":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","contentUrl":"https:\/\/www.bodhost.com\/kb\/wp-content\/uploads\/2025\/10\/Profile-Pic.png","width":240,"height":240,"caption":"Web Hosting Knowledge Base | bodHOST Hosting FAQ"},"image":{"@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.bodhost.com\/kb\/#\/schema\/person\/566ccff9a2fae4af852be8097b179813","name":"Paul Lopez","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/c63d9f5400cd5ef87b481a24b2c1a4fb89f1674b6391325326cf13f1e735dff8?s=96&d=mm&r=g","caption":"Paul Lopez"},"url":"https:\/\/www.bodhost.com\/kb\/author\/paullopez\/"}]}},"_links":{"self":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15184","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/comments?post=15184"}],"version-history":[{"count":10,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15184\/revisions"}],"predecessor-version":[{"id":15194,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/posts\/15184\/revisions\/15194"}],"wp:attachment":[{"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/media?parent=15184"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/categories?post=15184"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.bodhost.com\/kb\/wp-json\/wp\/v2\/tags?post=15184"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}