{"id":6936,"date":"2022-11-26T18:24:42","date_gmt":"2022-11-26T12:54:42","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=6936"},"modified":"2022-11-26T18:24:47","modified_gmt":"2022-11-26T12:54:47","slug":"how-to-do-wordpress-website-migration-from-domain-to-subdomain","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/","title":{"rendered":"How to do WordPress website migration from domain to subdomain"},"content":{"rendered":"\n<p><strong>Introduction<\/strong><\/p>\n\n\n\n<p>In this article, we will&nbsp;migrate the WordPress website from the source domain to the subdomain.<\/p>\n\n\n\n<p><strong>Prerequisite<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Server with credentials are needed<\/li>\n\n\n\n<li>Root user or sudo access for the server is essential<\/li>\n<\/ol>\n\n\n\n<p><strong>Procedure<\/strong><\/p>\n\n\n\n<p><strong><strong>Step 1:<\/strong> <\/strong>Login into the source domain server and find the document root on the domain configuration file(depends on the webserver installed on server).<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo cd \/etc\/&lt;webserver&gt;\/sites-available\/domain.conf<\/p>\n\n\n\n<p><strong>Step 2:<\/strong> Go to the document root path and take the backup<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo tar -zcvf wordpress.tar.gz \/home\/domain\/public_html<\/p>\n\n\n\n<p><strong>Step 3:<\/strong> Now take backup of the database using mysqldump command.<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo mysqldump databasename &gt; databasename.sql<\/p>\n\n\n\n<p><strong>Step 4:<\/strong> Copy both the backup files to the destination server using SCP command.<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo scp \/root\/wordpress.tar.gz user@ip:\/root<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ scp \/root\/databasename.sql user@ip:\/root<\/p>\n\n\n\n<p><strong>Step 5:<\/strong> Login to destination server<\/p>\n\n\n\n<p>Create the subdomain configuration file for virtualhost entry using the following command<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo vim subdomain.com.conf<\/p>\n\n\n\n<p>Add the below contents accordingly with respect to your subdomain name,<\/p>\n\n\n\n<pre class=\"wp-block-code has-white-background-color has-background\"><code>&lt;VirtualHost *:80&gt;\nServerName sub.domain.com\nServerAlias www.sub.domain.com\nDocumentRoot \/home\/subdomain\/public_html\nErrorLog ${APACHE_LOG_DIR}\/error.log\nCustomLog ${APACHE_LOG_DIR}\/access.log combined\n&lt;\/VirtualHost&gt;<\/code><\/pre>\n\n\n\n<p><strong>Step 6:<\/strong> Verify the configuration file syntax using the below command<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo apachectl configtest<\/p>\n\n\n\n<p>If the webserver is ngnix then run the following command.<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo systemctl config nginx<\/p>\n\n\n\n<p class=\"has-black-color has-white-background-color has-text-color has-background\">If there are no syntax errors, then restart the webserver<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo systemctl restart &lt;webserver&gt;<\/p>\n\n\n\n<p><strong>Step 7:<\/strong> Lets create the database and the user<\/p>\n\n\n\n<p>Enter into the MySQL database<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo mysql<\/p>\n\n\n\n<p>Run the following queries,<\/p>\n\n\n\n<pre class=\"wp-block-code has-black-color has-white-background-color has-text-color has-background\"><code>&gt; CREATE DATABASE &lt;db_name&gt;;\n&gt; GRANT ALL PRIVILEGES ON db_name.* TO '&lt;db_user&gt;'@'localhost' IDENTIFIED BY 'xxxxxx';\n&gt; FLUSH PRIVILEGES;<\/code><\/pre>\n\n\n\n<p><strong>Step 8:<\/strong> Restore backup files to the subdomain document root<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo cd \/root<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo tar -xvzf wordpress.tar.gz \/home\/subdomain\/public_html\/<\/p>\n\n\n\n<p>Now restore the mysql database<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo mysql db_name &lt; databasename.sql<\/p>\n\n\n\n<p><strong>Step 9:<\/strong> Modify the wordpress configuration file with the new database details<\/p>\n\n\n\n<p>Enter into the document root using the below command,<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo cd \/home\/subdomain\/public_html\/<\/p>\n\n\n\n<p>And run the following command edit wordpress configuration file .<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo vim wp-config.php<\/p>\n\n\n\n<p>Modify the file with a your database name and user<\/p>\n\n\n\n<pre class=\"wp-block-code has-black-color has-white-background-color has-text-color has-background\"><code>\/** The name of the database for WordPress *\/\ndefine('DB_NAME', 'db_name');\n\n\/** MySQL database username *\/\ndefine('DB_USER', 'db_user\n\n\/** MySQL database password *\/\ndefine('DB_PASSWORD', 'xxxxxx');\n\n\/** MySQL hostname *\/\ndefine('DB_HOST', 'localhost');<\/code><\/pre>\n\n\n\n<p><strong>Step 10:<\/strong> Change the siteurls in the database from http:\/\/domain.com to http:\/\/sub.domain.com.<\/p>\n\n\n\n<p>Run the queries to change the siteurls,<\/p>\n\n\n\n<pre class=\"wp-block-code has-black-color has-white-background-color has-text-color has-background\"><code>&gt; UPDATE wp_options SET option_value = replace(option_value, 'http:\/\/domain.com', 'http:\/\/sub.domain.com') WHERE option_name = 'home' OR option_name = 'siteurl';\n\n&gt; UPDATE wp_posts SET guid = replace(guid, 'http:\/\/domain.com', 'http:\/\/sub.domain.com');\n\n&gt; UPDATE wp_posts SET post_content = replace(post_content, 'http:\/\/domain.com', 'http:\/\/sub.domain.com');\n\n&gt; UPDATE wp_postmeta SET meta_value = replace(meta_value,'http:\/\/domain.com', 'http:\/\/sub.domain.com');<\/code><\/pre>\n\n\n\n<p><strong>Step 11:<\/strong> Make sure you have the .htaccess file placed under the document root<\/p>\n\n\n\n<p>If there is no htaccess file in document root, add a default configuration.<\/p>\n\n\n\n<p class=\"has-white-color has-black-background-color has-text-color has-background\">$ sudo vim .htaccess<\/p>\n\n\n\n<pre class=\"wp-block-code has-black-color has-white-background-color has-text-color has-background\"><code># BEGIN WordPress\n&lt;IfModule mod_rewrite.c&gt;\nRewriteEngine On\nRewriteBase \/\nRewriteRule ^index\\.php$ - &#091;L]\nRewriteCond %{REQUEST_FILENAME} !-f\nRewriteCond %{REQUEST_FILENAME} !-d\nRewriteRule . \/index.php &#091;L]\n&lt;\/IfModule&gt;\n# END WordPress<\/code><\/pre>\n\n\n\n<p>Now you can access the website http:\/\/sub.domain.com on browser.<\/p>\n\n\n\n<p><strong>Conclusion:<\/strong><\/p>\n\n\n\n<p>The migration from the source domain to the subdomain has successfully done by following all these steps.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction In this article, we will&nbsp;migrate the WordPress website from the source domain to the subdomain. Prerequisite Procedure Step 1: Login into the source domain server and find the document root on the domain configuration file(depends on the webserver installed on server). $ sudo cd \/etc\/&lt;webserver&gt;\/sites-available\/domain.conf Step 2: Go to&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">How to do WordPress website migration from domain to subdomain<\/span><i class=\"fa fa-arrow-right\"><\/i><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":{"0":"post-6936","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-uncategorized","7":"h-entry","9":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Pheonix Solutions - We Empower Your Business Growth<\/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:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Pheonix Solutions - We Empower Your Business Growth\" \/>\n<meta property=\"og:description\" content=\"Introduction In this article, we will&nbsp;migrate the WordPress website from the source domain to the subdomain. Prerequisite Procedure Step 1: Login into the source domain server and find the document root on the domain configuration file(depends on the webserver installed on server). $ sudo cd \/etc\/&lt;webserver&gt;\/sites-available\/domain.conf Step 2: Go to&hellip; Continue Reading How to do WordPress website migration from domain to subdomain\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/\" \/>\n<meta property=\"og:site_name\" content=\"PHEONIXSOLUTIONS\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/\" \/>\n<meta property=\"article:published_time\" content=\"2022-11-26T12:54:42+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-11-26T12:54:47+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png\" \/>\n\t<meta property=\"og:image:width\" content=\"3837\" \/>\n\t<meta property=\"og:image:height\" content=\"2540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:site\" content=\"@pheonixsolution\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to do WordPress website migration from domain to subdomain\",\"datePublished\":\"2022-11-26T12:54:42+00:00\",\"dateModified\":\"2022-11-26T12:54:47+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/\"},\"wordCount\":404,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2022-11-26T12:54:42+00:00\",\"dateModified\":\"2022-11-26T12:54:47+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to do WordPress website migration from domain to subdomain\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"name\":\"Pheonix Solutions\",\"description\":\"We Empower Your Business Growth\",\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\",\"name\":\"PheonixSolutions\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"contentUrl\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/wp-content\\\/uploads\\\/2016\\\/12\\\/logo.png\",\"width\":454,\"height\":300,\"caption\":\"PheonixSolutions\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/PheonixSolutions-209942982759387\\\/\",\"https:\\\/\\\/x.com\\\/pheonixsolution\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"http:\\\/\\\/blog.pheonixsolutions.com\"],\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/author\\\/admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Pheonix Solutions - We Empower Your Business Growth","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:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction In this article, we will&nbsp;migrate the WordPress website from the source domain to the subdomain. Prerequisite Procedure Step 1: Login into the source domain server and find the document root on the domain configuration file(depends on the webserver installed on server). $ sudo cd \/etc\/&lt;webserver&gt;\/sites-available\/domain.conf Step 2: Go to&hellip; Continue Reading How to do WordPress website migration from domain to subdomain","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2022-11-26T12:54:42+00:00","article_modified_time":"2022-11-26T12:54:47+00:00","og_image":[{"width":3837,"height":2540,"url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/09\/PX2.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@pheonixsolution","twitter_site":"@pheonixsolution","twitter_misc":{"Written by":"admin","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to do WordPress website migration from domain to subdomain","datePublished":"2022-11-26T12:54:42+00:00","dateModified":"2022-11-26T12:54:47+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/"},"wordCount":404,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2022-11-26T12:54:42+00:00","dateModified":"2022-11-26T12:54:47+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-do-wordpress-website-migration-from-domain-to-subdomain\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to do WordPress website migration from domain to subdomain"}]},{"@type":"WebSite","@id":"https:\/\/pheonixsolutions.com\/blog\/#website","url":"https:\/\/pheonixsolutions.com\/blog\/","name":"Pheonix Solutions","description":"We Empower Your Business Growth","publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pheonixsolutions.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pheonixsolutions.com\/blog\/#organization","name":"PheonixSolutions","url":"https:\/\/pheonixsolutions.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","contentUrl":"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2016\/12\/logo.png","width":454,"height":300,"caption":"PheonixSolutions"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","https:\/\/x.com\/pheonixsolution"]},{"@type":"Person","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/09bacc0294abee1322a23ab4bc6a0330dd4cb4df707dc9d0b0efeba6c109608b?s=96&r=g","caption":"admin"},"sameAs":["http:\/\/blog.pheonixsolutions.com"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-1NS","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6936","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/comments?post=6936"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/6936\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=6936"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=6936"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=6936"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}