{"id":5393,"date":"2014-11-23T15:08:58","date_gmt":"2014-11-23T21:08:58","guid":{"rendered":"https:\/\/secure.rosehosting.com\/blog\/?p=5393"},"modified":"2022-12-16T05:55:32","modified_gmt":"2022-12-16T11:55:32","slug":"install-wordpress-using-svn-on-a-centos-7-vps","status":"publish","type":"post","link":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/","title":{"rendered":"Install WordPress using SVN on a CentOS 7 VPS"},"content":{"rendered":"
<\/div>

\"\"There are multiple ways of installing WordPress. In this tutorial we will download and install WordPress CMS using SVN on a CentOS 7 VPS<\/a> .<\/p>\n

What is SVN?<\/p>\n

SVN stands for Apache Subversion which is a software versioning and revision control system distributed as free software under the Apache License. Many developers use Subversion to maintain current and historical versions of files such as source code, web pages, and documentation.<\/p>\n

<\/p>\n

This is because Apache Subversion is a centralized and open source version control system characterized by its reliability as a safe haven for valuable data, the simplicity of its model and usage and its ability to support the needs of a wide variety of users and projects, from individuals to large-scale enterprise operations.<\/p>\n

The official WordPress repository uses SVN ( http:\/\/core.svn.wordpress.org\/ ) which means that you’re getting the files directly from WordPress.<\/p>\n

Although you can install WordPress in many different ways, if you are using a repository you will can do the following:<\/p>\n

Fast and easy upgrades and downgrades to different versions of WordPress;
\nFaster updates since only the changed files are transferred;
\nRoll back to the previous version of files if you mess something up.<\/p>\n

REQUIREMENTS<\/strong><\/p>\n

We are using our SSD 1 VPS hosting plan for this tutorial.<\/p>\n

Please make sure that you have LAMP stack installed on your server. If not, follow our excellent article about installing LAMP (Linux Apache, MariaDB & PHP)<\/a> on a CentOS 7 VPS<\/a>.<\/p>\n

UPDATE THE SYSTEM<\/strong><\/p>\n

Login to your server as user \u2018root\u2019 and make sure your Linux VPS<\/a> is fully up-to-date:<\/p>\n

# ssh root@hostname\r\n# yum update<\/pre>\n

INSTALL SVN<\/strong><\/p>\n

You can install SVN by issuing the following command:<\/p>\n

# yum install svn<\/pre>\n

Then test the installation:<\/p>\n

# svn<\/pre>\n

You should get the following output:<\/p>\n

Type 'svn help' for usage.<\/pre>\n

Now that you installed SVN, check out the latest stable version of WordPress. You can do that by visiting the official WordPress website<\/a>.<\/p>\n

At the time of writing of this article, the latest WordPress version is 4.1.<\/p>\n

For our purpoces we will install WP into the default Apache document root which is \/var\/www\/html\/. Therefore we need to create a directory for the installation by issuing the following command:<\/p>\n

# mkdir \/var\/www\/html\/wordpress<\/pre>\n

Check out WordPress 4.1 from their repository. Enter the following command:<\/p>\n

# svn co http:\/\/core.svn.wordpress.org\/tags\/4.0.1\/ \/var\/www\/html\/wordpress\/<\/pre>\n

With the above command the download will be placed into the \/var\/www\/html\/wordpress\/ directory. You will see the files being downloaded while noting the version numbers. After the process is complete you will notice the message: Checked out revision [random number].<\/p>\n

Congratulations. You have installed WordPress using SVN.<\/p>\n

Next, you need to set up the database and configure WP.<\/p>\n

You can do that easily by following our fine tutorial on how to Install WordPress on a CentOS 7 VPS<\/a> . Create the database, change your wp-config.php details and run the following command:<\/p>\n

# chown -R apache:apache \/var\/www\/html\/wordpress\/*<\/pre>\n

which will set the correct ownership of your files.<\/p>\n

WordPress is now ready to use. You can finish your WordPress installation by opening your favorite web browser and navigate to: http:\/\/your_ip_address\/wordpress\/<\/p>\n

HARDEN SECURITY<\/strong><\/p>\n

SVN uses a special directory that contains important information. It is called .svn and it’s recommended to block access to this data so it can’t be accessed by the outside world.<\/p>\n

You can visit http:\/\/your_ip_address\/.svn\/ and you will see all the administrative files for the repository, which is definetely not good! Therefore let’s fix this.<\/p>\n

Open the Apache configuration file:<\/p>\n

# vim \/etc\/httpd\/conf\/httpd.conf<\/pre>\n

Locate the AllowOverride line in the <Directory “\/var\/www\/html”> section. Change the setting from None to All. This will allow .htaccess to be active.<\/p>\n

Now create a new .htaccess file by entering the following command:<\/p>\n

# vim \/var\/www\/html\/.svn\/.htaccess<\/pre>\n

Add the following contents to this file:<\/p>\n

order deny, allow\r\ndeny from all<\/pre>\n

Restart your web server for the changes to become active:<\/p>\n

# systemctl restart httpd.service<\/pre>\n

After this you or anyone trying to open http:\/\/your_ip_address\/.svn\/ will get an Internal Server Error.<\/p>\n

That is it. You successfully installed WordPress using SVN.<\/p>\n

Of course you don\u2019t have to do any of this if you use one of our Linux VPS hosting<\/a> services, in which case you can simply ask our expert Linux admins to do this for you.They are available 24\u00d77 and will take care of your request immediately.<\/p>\n

PS.<\/span> If you liked this post 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":"

There are multiple ways of installing WordPress. In this tutorial we will download and install WordPress CMS using SVN on … <\/p>\n

Read More<\/a><\/p>\n","protected":false},"author":4,"featured_media":5395,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1699,1710,13],"tags":[541,292,628,35,148],"yoast_head":"\nInstall Wordpress using SVN on a CentOS 7 VPS - RoseHosting<\/title>\n<meta name=\"description\" content=\"Install Wordpress using SVN on a CentOS 7 VPS - 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\/install-wordpress-using-svn-on-a-centos-7-vps\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting\" \/>\n<meta property=\"og:description\" content=\"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/\" \/>\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=\"2014-11-23T21:08:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-12-16T11:55:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png\" \/>\n\t<meta property=\"og:image:width\" content=\"324\" \/>\n\t<meta property=\"og:image:height\" content=\"285\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\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\/install-wordpress-using-svn-on-a-centos-7-vps\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/\"},\"author\":{\"name\":\"Jeff Wilson\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713\"},\"headline\":\"Install WordPress using SVN on a CentOS 7 VPS\",\"datePublished\":\"2014-11-23T21:08:58+00:00\",\"dateModified\":\"2022-12-16T11:55:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/\"},\"wordCount\":719,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png\",\"keywords\":[\"centos 7\",\"cms\",\"repository\",\"svn\",\"wordpress\"],\"articleSection\":[\"CentOS\",\"CMS, CRM, ERP\",\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/\",\"name\":\"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting\",\"isPartOf\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png\",\"datePublished\":\"2014-11-23T21:08:58+00:00\",\"dateModified\":\"2022-12-16T11:55:32+00:00\",\"description\":\"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting\",\"breadcrumb\":{\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage\",\"url\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png\",\"contentUrl\":\"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png\",\"width\":324,\"height\":285},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.rosehosting.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Install WordPress using SVN on a CentOS 7 VPS\"}]},{\"@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":"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting","description":"Install Wordpress using SVN on a CentOS 7 VPS - 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\/install-wordpress-using-svn-on-a-centos-7-vps\/","og_locale":"en_US","og_type":"article","og_title":"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting","og_description":"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting","og_url":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/","og_site_name":"RoseHosting","article_publisher":"https:\/\/www.facebook.com\/RoseHosting","article_author":"https:\/\/www.facebook.com\/rosehosting.helpdesk","article_published_time":"2014-11-23T21:08:58+00:00","article_modified_time":"2022-12-16T11:55:32+00:00","og_image":[{"width":324,"height":285,"url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png","type":"image\/png"}],"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\/install-wordpress-using-svn-on-a-centos-7-vps\/#article","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/"},"author":{"name":"Jeff Wilson","@id":"https:\/\/www.rosehosting.com\/blog\/#\/schema\/person\/7ce77a842fa6a9a7f8efa186f2353713"},"headline":"Install WordPress using SVN on a CentOS 7 VPS","datePublished":"2014-11-23T21:08:58+00:00","dateModified":"2022-12-16T11:55:32+00:00","mainEntityOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/"},"wordCount":719,"commentCount":0,"publisher":{"@id":"https:\/\/www.rosehosting.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png","keywords":["centos 7","cms","repository","svn","wordpress"],"articleSection":["CentOS","CMS, CRM, ERP","Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/","url":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/","name":"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting","isPartOf":{"@id":"https:\/\/www.rosehosting.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage"},"image":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage"},"thumbnailUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png","datePublished":"2014-11-23T21:08:58+00:00","dateModified":"2022-12-16T11:55:32+00:00","description":"Install Wordpress using SVN on a CentOS 7 VPS - RoseHosting","breadcrumb":{"@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#primaryimage","url":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png","contentUrl":"https:\/\/www.rosehosting.com\/blog\/wp-content\/uploads\/2014\/11\/svn1.png","width":324,"height":285},{"@type":"BreadcrumbList","@id":"https:\/\/www.rosehosting.com\/blog\/install-wordpress-using-svn-on-a-centos-7-vps\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.rosehosting.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Install WordPress using SVN on a CentOS 7 VPS"}]},{"@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\/5393"}],"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=5393"}],"version-history":[{"count":3,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5393\/revisions"}],"predecessor-version":[{"id":44374,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/posts\/5393\/revisions\/44374"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media\/5395"}],"wp:attachment":[{"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/media?parent=5393"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/categories?post=5393"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.rosehosting.com\/blog\/wp-json\/wp\/v2\/tags?post=5393"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}