{"id":24837,"date":"2018-01-11T02:30:54","date_gmt":"2018-01-11T08:30:54","guid":{"rendered":"https:\/\/www.rosehosting.com\/blog\/?p=24837"},"modified":"2022-06-03T03:35:19","modified_gmt":"2022-06-03T08:35:19","slug":"how-to-redirect-a-domain","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/","title":{"rendered":"How to Redirect a Domain"},"content":{"rendered":"
<\/div>

\"How<\/p>\n

We’ll show you, how to redirect a domain. URL redirection, also called URL forwarding, is a World Wide Web technique for making a web page available under more than one URL address. When a web browser attempts to open a URL that has been redirected, a page with a different URL is opened. There are few ways to redirect a domain and it depends on the web server used etc. In this tutorial we are going to show you, how to redirect a domain with Apache web server and URL redirection with NGINX web server.
\n<\/p>\n

How to Redirect a Domain with Apache web server<\/h2>\n

The Apache HTTP Server, is free and open-source cross-platform web server software.\u00a092% of Apache HTTPS Server copies run on Linux distributions.<\/p>\n

Install Apache on your server if it is not installed yet.<\/h3>\n

On RPM based Linux distributions, like CentOS and Fedora, use the following command to install Apache:<\/p>\n

yum install httpd<\/pre>\n

Verify that mod_rewrite module is enabled:<\/h3>\n
httpd -M | grep rewrite\r\n rewrite_module (shared)<\/pre>\n

On Ubuntu and Debian, run:<\/h3>\n
sudo apt-get update\r\nsudo apt-get install apache2<\/pre>\n

Activate the apache mod_rewrite module:<\/h3>\n
sudo a2enmod rewrite<\/pre>\n

Restart the Apache service:<\/h3>\n
sudo service apache2 restart<\/pre>\n

Create a simple virtual host in Apache<\/h3>\n

Create a simple virtual host in Apache for the old domain in which you redirect it to the new domain:
\nUse the Redirect Permanent directive to redirect the web client to the new URL:<\/p>\n

<VirtualHost *:80><\/p>\n

ServerName old-domain.com
\nServerAlias www.old-domain.com<\/p>\n

RedirectPermanent \/ http:\/\/www.new-domain.com\/<\/p>\n

# optionally add an AccessLog directive here for logging the requests e.g. :<\/p>\n

CustomLog ${APACHE_LOG_DIR}\/access.log combined<\/p>\n

<\/VirtualHost><\/p>\n

Restart the Apache server:<\/h3>\n

Restart the Apache service to apply the changes.<\/p>\n

You can also redirect a domain name to a different one using rewrite rules placed in .htaccess file located in the document root directory of the old domain name. Create a new .htaccess file and add the following rules to it:<\/p>\n

RewriteEngine on\r\nRewriteCond %{HTTP_HOST} ^old-domain.com [NC,OR]\r\nRewriteCond %{HTTP_HOST} ^www.old-domain.com [NC]\r\nRewriteRule ^(.*)$ http:\/\/new-domain.com\/$1 [L,R=301,NC]<\/pre>\n

How to Redirect a Domain with NGINX\u00a0web server<\/h2>\n

Nginx is free and open source web server\/software, which can also be used as a reverse proxy, load balancer and HTTP cache.\u00a0 A large fraction of web servers use NGINX, very often as a load balancer.<\/p>\n

Stop Apache<\/h3>\n

Stop Apache on your server<\/p>\n

service httpd stop<\/pre>\n

Disable Apache service<\/h3>\n

Disable Apache service to automaticaly start on boot (CentOS 7):<\/p>\n

systemctl disable httpd<\/pre>\n

Install NGINX\u00a0\u00a0on RPM Linux Distros<\/h3>\n

Install nginx web server. On RPM based Linux distributions, like CentOS and Fedora, use the following commands:<\/p>\n

yum install epel-release\r\nyum install nginx\r\nsystemctl enable nginx\r\nservice nginx start<\/pre>\n

Install NGINX\u00a0 on Ubuntu<\/h3>\n

On Ubuntu (and other Debian based Linux distributions), run:<\/p>\n

sudo service apache2 stop\r\nsudo apt-get remove --purge apache2 apache2-utils\r\nsudo rm -rf \/etc\/apache2\r\nsudo apt-get update\r\nsudo apt-get install nginx<\/pre>\n

If you receive a message that there is no nginx package available or so, install nginx using the nginx repository:<\/p>\n

sudo apt-get install python-software-properties\r\nsudo add-apt-repository ppa:nginx\/stable\r\nsudo apt-get update\r\nsudo apt-get install nginx<\/pre>\n

Start NGINX<\/h3>\n

Start the nginx service with the following command:<\/p>\n

sudo service nginx start<\/pre>\n

Configure NGINX<\/h3>\n

Edit the current nginx server block about the old domain or create a new server block if it is not created yet.
\nAdd the following lines:<\/p>\n

server {\r\n  listen 80;\r\n  server_name old-domain.com www.old-domain.com;\r\n  return 301 http:\/\/www.new-domain.com$request_uri;\r\n}<\/pre>\n

Please note that $request_uri will listen for and redirect to anything after the domain.<\/p>\n

If you have an older version of nginx (version 0.9.1 or lower) add the following lines:<\/p>\n

server {\r\n  listen 80;\r\n  server_name old-domain.com www.old-domain.com;\r\n  rewrite ^ http:\/\/www.new-domain.com$request_uri? permanent;\r\n}<\/pre>\n

Restart NGINX<\/h3>\n

Do not forget to restart the nginx service for the changes to take effect:
\nservice nginx restart<\/p>\n


\n

Of course you don\u2019t have to redirect a domain if you use one of our managed VPS hosting service<\/a>s, in which case you can simply ask our expert Linux admins to redirect a domain name<\/strong> for you. They are available 24×7 and will take care of your request immediately.<\/p>\n

PS<\/span>.<\/strong> If you liked this post, on how to redirect a domain, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p>\n","protected":false},"excerpt":{"rendered":"

We’ll show you, how to redirect a domain. URL redirection, also called URL forwarding, is a World Wide Web technique … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":25254,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1701],"tags":[37,49,1643],"yoast_head":"\nHow to Redirect a Domain - RoseHosting<\/title>\n<meta name=\"description\" content=\"How to Redirect a Domain - RoseHosting\" \/>\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.rosehosting.com\/blog\/how-to-redirect-a-domain\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Redirect a Domain - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"How to Redirect a Domain - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/\" \/>\n<meta property=\"og:site_name\" content=\"RoseHosting\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/RoseHosting\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/rosehosting.helpdesk\" \/>\n<meta property=\"article:published_time\" content=\"2018-01-11T08:30:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-06-03T08:35:19+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"600\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeff Wilson\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:site\" content=\"@rosehosting\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeff Wilson\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"How to Redirect a Domain\",\"datePublished\":\"2018-01-11T08:30:54+00:00\",\"dateModified\":\"2022-06-03T08:35:19+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/\"},\"wordCount\":603,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg\",\"keywords\":[\"apache\",\"nginx\",\"redirect a domain\"],\"articleSection\":[\"Networking and Domains\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/\",\"name\":\"How to Redirect a Domain - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg\",\"datePublished\":\"2018-01-11T08:30:54+00:00\",\"dateModified\":\"2022-06-03T08:35:19+00:00\",\"description\":\"How to Redirect a Domain - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg\",\"width\":1200,\"height\":600,\"caption\":\"How to Redirect a Domain\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Redirect a Domain\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"name\":\"RoseHosting\",\"description\":\"Premium Linux Tutorials Since 2001\",\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\",\"name\":\"RoseHosting\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png\",\"width\":192,\"height\":192,\"caption\":\"RoseHosting\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/RoseHosting\",\"https:\/\/x.com\/rosehosting\",\"https:\/\/www.linkedin.com\/in\/rosehosting\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\",\"name\":\"Jeff Wilson\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g\",\"caption\":\"Jeff Wilson\"},\"description\":\"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.\",\"sameAs\":[\"https:\/\/www.rosehosting.com\",\"https:\/\/www.facebook.com\/rosehosting.helpdesk\"],\"url\":\"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Redirect a Domain - RoseHosting","description":"How to Redirect a Domain - RoseHosting","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.rosehosting.com\/blog\/how-to-redirect-a-domain\/","og_locale":"en_US","og_type":"article","og_title":"How to Redirect a Domain - RoseHosting","og_description":"How to Redirect a Domain - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2018-01-11T08:30:54+00:00","article_modified_time":"2022-06-03T08:35:19+00:00","og_image":[{"width":1200,"height":600,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg","type":"image\/jpeg"}],"author":"Jeff Wilson","twitter_card":"summary_large_image","twitter_creator":"@rosehosting","twitter_site":"@rosehosting","twitter_misc":{"Written by":"Jeff Wilson","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"How to Redirect a Domain","datePublished":"2018-01-11T08:30:54+00:00","dateModified":"2022-06-03T08:35:19+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/"},"wordCount":603,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg","keywords":["apache","nginx","redirect a domain"],"articleSection":["Networking and Domains"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/","url":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/","name":"How to Redirect a Domain - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg","datePublished":"2018-01-11T08:30:54+00:00","dateModified":"2022-06-03T08:35:19+00:00","description":"How to Redirect a Domain - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2018\/01\/How-to-Redirect-a-Domain.jpg","width":1200,"height":600,"caption":"How to Redirect a Domain"},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/how-to-redirect-a-domain\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Redirect a Domain"}]},{"@type":"WebSite","@id":"https:\/\/www.rosehosting.com\/blog\/#website","url":"https:\/\/www.rosehosting.com\/blog\/","name":"RoseHosting","description":"Premium Linux Tutorials Since 2001","publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.rosehosting.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.rosehosting.com\/blog\/#organization","name":"RoseHosting","url":"https:\/\/www.rosehosting.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2022\/03\/android-chrome-192x192-1.png","width":192,"height":192,"caption":"RoseHosting"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/RoseHosting","https:\/\/x.com\/rosehosting","https:\/\/www.linkedin.com\/in\/rosehosting\/"]},{"@type":"Person","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713","name":"Jeff Wilson","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09271207587f897ab46faaed9b355252?s=96&r=g","caption":"Jeff Wilson"},"description":"An experienced Linux veteran with many years of experience. Helping other Linux admins with frequent Linux and business-related blog posts on the RoseHosting blog. Techie by choice. Loving nature and travel. Happily married and father of two lovely children.","sameAs":["https:\/\/www.rosehosting.com","https:\/\/www.facebook.com\/rosehosting.helpdesk"],"url":"https:\/\/www.rosehosting.com\/blog\/author\/jwilson\/"}]}},"_links":{"self":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/24837"}],"collection":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/comments?post=24837"}],"version-history":[{"count":1,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/24837\/revisions"}],"predecessor-version":[{"id":41839,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/24837\/revisions\/41839"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/25254"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=24837"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=24837"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=24837"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}