{"id":47364,"date":"2024-10-15T16:32:06","date_gmt":"2024-10-15T16:32:06","guid":{"rendered":"https:\/\/ubuntuhandbook.org\/?p=47364"},"modified":"2024-10-15T16:32:06","modified_gmt":"2024-10-15T16:32:06","slug":"open-certain-url-web-browsers","status":"publish","type":"post","link":"https:\/\/ubuntuhandbook.org\/index.php\/2024\/10\/open-certain-url-web-browsers\/","title":{"rendered":"How to Open Certain URL Links in Specific Web Browsers"},"content":{"rendered":"<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"alignleft size-thumbnail wp-image-39866\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo-250x250.webp\" alt=\"\" width=\"250\" height=\"250\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo-250x250.webp 250w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo-300x300.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo-600x600.webp 600w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo-768x768.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2022\/05\/chromium-logo.webp 1200w\" sizes=\"auto, (max-width: 250px) 100vw, 250px\" \/><\/a><\/p>\n<p>This tutorial shows how to configure Ubuntu or other Linux to redirect certain URLs or domains to specific web browser, while leaving all others open in the default browser.<\/p>\n<p>When clicking an URL in email reader, chat app, and other apps, it by default opens the linked page in system default web browser. However, some users may prefer to open certain websites in non-default browser. For example, use Google Chrome for watching YouTube, while using Firefox as default.<\/p>\n<p><!--more--><\/p>\n<p>Besides using a third-party app (e.g., <a href=\"https:\/\/apps.gnome.org\/Junction\/\" target=\"_blank\" rel=\"noopener\">Junction<\/a>) to pop-up dialog letting you choose which app to open the link with, Linux user can create a simple script to tell which browser to use when clicking an URL.<\/p>\n<div id=\"attachment_47365\" style=\"width: 620px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog.webp\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-47365\" class=\"size-large wp-image-47365\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog-700x213.webp\" alt=\"\" width=\"610\" height=\"186\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog-700x213.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog-300x91.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog-768x233.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog-1536x467.webp 1536w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog-1320x401.webp 1320w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/junction-open-linkdialog.webp 1592w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><p id=\"caption-attachment-47365\" class=\"wp-caption-text\">Junction lets you choose which app to open link with<\/p><\/div>\n<p>And, below I&#8217;m going to show to how to do the trick step by step.<\/p>\n<p><b>NOTE: The steps below are written for default GNOME Desktop. It ALSO works in other desktops, though you may need to change the way to create the files and configure default browser.<\/b><\/p>\n<h3>Step 1: Find out path to executable files of your web browsers<\/h3>\n<p>For beginners who don&#8217;t even know where are the executable files of the web browsers in system, first press <code>Ctrl+Alt+T<\/code> on keyboard to open up a terminal window.<\/p>\n<p>To find the browsers installed as native <code>.deb<\/code> (or <code>.rpm<\/code>) packages, try the command below:<\/p>\n<pre>whereis firefox<\/pre>\n<p>Replace <code>firefox<\/code> with yours web browser name. <b>NOTE: Linux console in case sensitive<\/b>, so you may also try <code>Firefox<\/code> if the last command output nothing.<\/p>\n<p>Native app packages usually install executable files into <code>\/usr\/bin<\/code>. So, you may also run <code><b>ls \/usr\/bin<\/b><\/code> to list all files in that directory.<\/p>\n<p>If your browsers were installed via <b>Snap<\/b> and\/or <b>Flatpak<\/b> packages, then run the commands below to check the following bin directories:<\/p>\n<pre>ls \/snap\/bin<\/pre>\n<pre>ls \/var\/lib\/flatpak\/exports\/bin\/<\/pre>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/list-exes.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47366\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/list-exes-700x505.webp\" alt=\"\" width=\"610\" height=\"440\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/list-exes-700x505.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/list-exes-300x216.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/list-exes.webp 706w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>So, path to executable of your web browser, firefox for example, should be similar to one of below:<\/p>\n<ul>\n<li><code>\/usr\/bin\/firefox<\/code><\/li>\n<li><code>\/snap\/bin\/firefox<\/code><\/li>\n<li><code>\/var\/lib\/flatpak\/exports\/bin\/org.mozilla.firefox<\/code><\/li>\n<\/ul>\n<h3>Step 2: Create custom script to tell which browser to use when clicking an URL<\/h3>\n<p>1. First, search for and launch <code>Text Editor<\/code> from the overview screen.<\/p>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2017\/04\/open-texteditor.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-43854\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2017\/04\/open-texteditor.webp\" alt=\"\" width=\"480\" height=\"270\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2017\/04\/open-texteditor.webp 480w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2017\/04\/open-texteditor-300x169.webp 300w\" sizes=\"auto, (max-width: 480px) 100vw, 480px\" \/><\/a><\/p>\n<p>2. When text editor opens with an empty page (create if not), paste following script content:<\/p>\n<pre>#!\/bin\/bash\r\nDOMAIN_LIST_FILE=~\/'.domains.txt'\r\nOTHER_BROWSER='\/usr\/bin\/chromium'\r\nBROWSER_OPTIONS='' # Optional, for command line options passed to browser\r\nDEFAULT_BROWSER='\/usr\/bin\/firefox'\r\n\r\nif echo \"$1\" | pcregrep -q '^https?:\/\/'; then\r\n    matching=0\r\n    while read domain; do\r\n\tif echo \"$1\" | pcregrep -q \"^https?:\/\/${domain}\"; then\r\n\t    matching=1\r\n\t    break\r\n\tfi\r\n    done &lt; \"$DOMAIN_LIST_FILE\"\r\n\r\n    if [[ $matching -eq 1 ]]; then\r\n\t\"$OTHER_BROWSER\" $BROWSER_OPTIONS ${*}\r\n\texit 0\r\n    fi\r\n\r\n    \"$DEFAULT_BROWSER\" ${*}\r\n    exit 0\r\nelse\r\n    exit 0\r\nfi<\/pre>\n<p>The script above (inspired by <a href=\"https:\/\/wiki.archlinux.org\/title\/GNOME\/Tips_and_tricks\" target=\"_blank\" rel=\"noopener\">this Wiki<\/a>) tells to check the <code>.domains.txt<\/code> file for certain URLs. If clicking an URL matches one in that file, it tries to open with OTHER_BROWSER, or it uses the DEFAULT_BROWSER instead.<\/p>\n<p><strong>Here, you need to replace <code>\/usr\/bin\/xxx<\/code> with PATH to your web browsers&#8217; executable:<\/strong><\/p>\n<ul>\n<li>OTHER_BROWSER=&#8217;<b>\/usr\/bin\/chromium<\/b>&#8216;, according to which browser you want to use for certain URLs.<\/li>\n<li>DEFAULT_BROWSER=&#8217;<b>\/usr\/bin\/firefox<\/b>&#8216; for all other URLs.<\/li>\n<li>And add optional options, if want, to <code>BROWSER_OPTIONS=''<\/code>, such as <code>--new-window<\/code> to open in new window.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-web-script.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47367\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-web-script-700x649.webp\" alt=\"\" width=\"610\" height=\"566\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-web-script-700x649.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-web-script-300x278.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-web-script-768x712.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-web-script.webp 929w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>3. When done editing the file, click Save (Ctrl+S or Ctrl+Alt+S). In pop-up dialog, do:<\/p>\n<ul>\n<li>set script name, <code>open-custom-url<\/code> in my case.<\/li>\n<li>choose save the script to <code>\/usr\/local\/bin<\/code>(need to type password to authenticate), or any other location (e.g., Home -&gt; .local (press Ctrl+H to view\/hide) -&gt; bin) if you don&#8217;t have admin permission.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customweb-script.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47368\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customweb-script-700x445.webp\" alt=\"\" width=\"610\" height=\"388\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customweb-script-700x445.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customweb-script-300x191.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customweb-script-768x488.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customweb-script.webp 1078w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>Finally, open terminal (Ctrl+Alt+T) and run command to add executable permission to the script:<\/p>\n<pre>sudo chmod +x \/usr\/local\/bin\/open-custom-url<\/pre>\n<p><i>Replace <code>\/usr\/local\/bin\/open-custom-url<\/code> if you saved the file to other location, and skip <code>sudo<\/code> for file inside user home.<\/i><\/p>\n<h3>Step 3: Create Desktop Entry for that script<\/h3>\n<p>1. Also open text editor and create an empty document. Then, paste the lines below into that file:<\/p>\n<pre>[Desktop Entry]\r\nVersion=1.0\r\nName=Custom Web\r\nGenericName=Web Browser\r\nExec=<b>\/usr\/local\/bin\/open-custom-url<\/b> %u\r\nTerminal=false\r\nNoDisplay=true\r\nType=Application\r\nMimeType=text\/html;text\/xml;application\/xhtml+xml;application\/vnd.mozilla.xul+xml;text\/mml;x-scheme-handler\/http;x-scheme-handler\/https;\r\nStartupNotify=true\r\nCategories=Network;WebBrowser;\r\nKeywords=web;browser;internet;\r\nActions=new-window;new-private-window;<\/pre>\n<p>Here you need to replace <b>\/usr\/local\/bin\/open-custom-url<\/b> to path to the script you created via Step 2.<br \/>\n<a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/customurl-entry.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47369\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/customurl-entry-700x353.webp\" alt=\"\" width=\"610\" height=\"308\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/customurl-entry-700x353.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/customurl-entry-300x151.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/customurl-entry-768x388.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/customurl-entry.webp 929w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>2. Then, click Save (Ctrl+S) and choose to save file:<\/p>\n<ul>\n<li>as whatever name with <code>.desktop<\/code> extension.<\/li>\n<li>save to Home -&gt; .local -&gt; share -&gt; applications directory.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customurl-entry.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47370\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customurl-entry-700x445.webp\" alt=\"\" width=\"610\" height=\"388\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customurl-entry-700x445.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customurl-entry-300x191.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customurl-entry-768x488.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-customurl-entry.webp 1078w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>After that, your Linux system knows the script, creates an entry in the start menu (but hidden due to <code>NoDisplay=true<\/code>), and allows to be associated with other apps\/files.<\/p>\n<h3>Step 4: Create .domains.txt file and write the certain URLs<\/h3>\n<p>Now, open text editor and write the certain URLs or domains you want to open with the specific web browser, one URL per line.<\/p>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-urls.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47371\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-urls-700x600.webp\" alt=\"\" width=\"610\" height=\"523\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-urls-700x600.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-urls-300x257.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-urls-768x658.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/custom-urls.webp 836w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>When done, choose save as <b>.domains.txt<\/b> (according to script content in Step 2) file in user home directory.<\/p>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-domains.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47372\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-domains-700x445.webp\" alt=\"\" width=\"610\" height=\"388\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-domains-700x445.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-domains-300x191.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-domains-768x488.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/save-domains.webp 1078w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<h3>Step 5: Set the custom script as default &#8216;browser&#8217;<\/h3>\n<p>After created the script, added as desktop entry, and wrote certain URLs into file via steps above, you also need to run few commands below:<\/p>\n<ul>\n<li>First, open terminal (Ctrl+Alt+T) and run command to install <code>pcregrep<\/code> tool which is in use in the script:\n<pre>sudo apt install pcregrep<\/pre>\n<\/li>\n<li>Then, add executable permission to that script:\n<pre>sudo chmod +x \/usr\/local\/bin\/open-custom-url<\/pre>\n<\/li>\n<li>Finally, update the database for the desktop entry:\n<pre>update-desktop-database $HOME\/.local\/share\/applications\/<\/pre>\n<\/li>\n<\/ul>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/apply-script.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47373\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/apply-script-700x371.webp\" alt=\"\" width=\"610\" height=\"323\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/apply-script-700x371.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/apply-script-300x159.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/apply-script.webp 706w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>When done, open <b>Settings<\/b>. Then navigate to either <b>Apps<\/b> or <b>Default Applications<\/b> in left panel.<\/p>\n<p>Finally, go to <b>Default Apps<\/b> -&gt; choose &#8220;<b>Custom Web<\/b>&#8221; for Web. For non-GNOME desktop, use the corresponding setting option to set the custom script as default browser.<\/p>\n<p><a href=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/gnome-default-customweb.webp\"><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-large wp-image-47374\" src=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/gnome-default-customweb-700x489.webp\" alt=\"\" width=\"610\" height=\"426\" srcset=\"https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/gnome-default-customweb-700x489.webp 700w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/gnome-default-customweb-300x210.webp 300w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/gnome-default-customweb-768x537.webp 768w, https:\/\/ubuntuhandbook.org\/wp-content\/uploads\/2024\/10\/gnome-default-customweb.webp 1002w\" sizes=\"auto, (max-width: 610px) 100vw, 610px\" \/><\/a><\/p>\n<p>Finally, try opening an URL link in your email client or other non-web-browser applications to see if works.<\/p>\n<h3>Undo:<\/h3>\n<p>To undo the changes above, simply delete the script and <code>.desktop<\/code> files you created. If you use the names in the steps above, just run commands below in terminal (Ctrl+Alt+T) one by one:<\/p>\n<pre>sudo rm \/usr\/local\/bin\/open-custom-url<\/pre>\n<pre>rm ~\/.local\/share\/applications\/open-custom-url.desktop<\/pre>\n<p>Also open &#8220;Settings&#8221; and set back the default web browser.<\/p>","protected":false},"excerpt":{"rendered":"<p>This tutorial shows how to configure Ubuntu or other Linux to redirect certain URLs or domains to specific web browser, while leaving all others open in the default browser. When clicking an URL in email reader, chat app, and other apps, it by default opens the linked page in system default web browser. However, some [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":36639,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[2057],"class_list":["post-47364","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-howtos","tag-web"],"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/posts\/47364","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/comments?post=47364"}],"version-history":[{"count":0,"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/posts\/47364\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/media\/36639"}],"wp:attachment":[{"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/media?parent=47364"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/categories?post=47364"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/ubuntuhandbook.org\/index.php\/wp-json\/wp\/v2\/tags?post=47364"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}