{"id":15841,"date":"2025-10-13T18:37:00","date_gmt":"2025-10-13T13:07:00","guid":{"rendered":"https:\/\/www.skynats.com\/?p=15841"},"modified":"2025-10-14T11:39:18","modified_gmt":"2025-10-14T06:09:18","slug":"how-to-install-yii-framework-on-ubuntu-using-apache","status":"publish","type":"post","link":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/","title":{"rendered":"How to Install Yii Framework on Ubuntu Using Apache"},"content":{"rendered":"\n<p>Yii is a modern, high-performance PHP framework that makes developing web applications faster and more secure. With its elegant MVC architecture, built-in tools, and extensive features, Yii is a popular choice for both small and large projects. In this guide, we\u2019ll walk you through How to install Yii Framework on Ubuntu and running it with Apache in just a few simple steps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 1: Update Your System<\/strong><\/h2>\n\n\n\n<p>Before starting, make sure your system packages are up to date.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt update &amp;&amp; sudo apt upgrade<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 2: Install Apache, PHP, and Required Extensions<\/strong><\/h2>\n\n\n\n<p>Yii requires PHP 7.4 or later along with some common extensions.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo apt install apache2 php php-cli php-mbstring php-xml php-curl php-zip php-intl unzip -y<\/code><\/pre>\n\n\n\n<p>Enable Apache\u2019s rewrite module:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2enmod rewrite\nsudo systemctl enable apache2\nsudo systemctl restart apache2<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading has-small-font-size\"><strong>Step 3: Install Composer<\/strong><\/h2>\n\n\n\n<p>Composer is the PHP dependency manager that handles Yii installation.<\/p>\n\n\n\n<p>Check installation:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>composer --version<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 4: Create a New Yii Project<\/strong><\/h3>\n\n\n\n<p>Move to your web root and create a new Yii application using Composer.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>cd \/var\/www\/html\ncomposer create-project --prefer-dist yiisoft\/yii2-app-basic yiitest<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 5: Configure Apache for Yii<\/strong><\/h3>\n\n\n\n<p>Create a new Apache configuration file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo nano \/etc\/apache2\/sites-available\/yiitest.conf<\/code><\/pre>\n\n\n\n<p>Add the following configuration:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;VirtualHost *:80>\n    ServerName yourdomain.com\n    DocumentRoot \/var\/www\/html\/yiitest\/web\n&lt;Directory \/var\/www\/html\/yiitest\/web>\n        AllowOverride All\n        Require all granted\n    &lt;\/Directory>\n\n    ErrorLog ${APACHE_LOG_DIR}\/yiitest-error.log\n    CustomLog ${APACHE_LOG_DIR}\/yiitest-access.log combined\n&lt;\/VirtualHost><\/code><\/pre>\n\n\n\n<p>Enable the new site and restart Apache:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>sudo a2ensite yiitest.conf\nsudo systemctl reload apache2<\/code><\/pre>\n\n\n\n<p>Note: You can secure your Yii application using a free SSL certificate if you want.<\/p>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Step 6: Verify Installation<\/strong><\/h3>\n\n\n\n<p>Open your browser and go to:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>http:&#47;&#47;yourdomain.com<\/code><\/pre>\n\n\n\n<p>You should see the Yii welcome page as shown below, confirming that your installation is successful.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"446\" sizes=\"(max-width: 1024px) 100vw, 1024px\" src=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1024x446.png\" alt=\"Install Yii Framework on Ubuntu\" class=\"wp-image-15842\" srcset=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1024x446.png 1024w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-300x131.png 300w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-768x335.png 768w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1536x669.png 1536w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1200x523.png 1200w, https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image.png 1600w\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading has-small-font-size\"><strong>Conclusion<\/strong><\/h3>\n\n\n\n<p>You\u2019ve successfully installed the Yii Framework on <a href=\"https:\/\/ubuntu.com\/\"><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-secondary-color\">Ubuntu<\/mark><\/a> using Apache! Your server is now ready for developing fast, secure, and scalable PHP applications. From here, you can start building custom modules, explore Yii\u2019s powerful features, and deploy production-ready web applications with confidence.<\/p>\n\n\n\n<p>If you face any issues while you install Yii Framework on Ubuntu or need help configuring your Apache server for optimal performance, our team is here to help. We specialize in <a href=\"https:\/\/www.skynats.com\/server-management\/\">Server Management services<\/a>, including framework setup, web server optimization, and complete Linux server administration. Contact our 24\/7 technical experts to ensure your Yii framework runs smoothly and securely on your Ubuntu environment.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Yii is a modern, high-performance PHP framework that makes developing web applications faster and more secure. With its elegant MVC architecture, built-in tools, and extensive features, Yii is a popular choice for both small and large projects. In this guide, we\u2019ll walk you through How to install Yii Framework on Ubuntu and running it with [&hellip;]<\/p>\n","protected":false},"author":13,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[5],"tags":[1134,1010,302],"class_list":["post-15841","post","type-post","status-publish","format-standard","hentry","category-blog","tag-install-yii-framework-on-ubuntu-using-apache","tag-linux-server-management-services","tag-server-management-services"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Install Yii Framework on Ubuntu Easily with Apache<\/title>\n<meta name=\"description\" content=\"Learn how to Install Yii Framework on Ubuntu step-by-step. Simplify setup &amp; boost performance\u2014get expert help today!\" \/>\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.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Yii Framework on Ubuntu Using Apache\" \/>\n<meta property=\"og:description\" content=\"Learn how to Install Yii Framework on Ubuntu step-by-step. Simplify setup &amp; boost performance\u2014get expert help today!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/\" \/>\n<meta property=\"og:site_name\" content=\"Server Management Services | Cloud Management | Skynats\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/skynats\" \/>\n<meta property=\"article:published_time\" content=\"2025-10-13T13:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-14T06:09:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1024x446.png\" \/>\n<meta name=\"author\" content=\"Sourav AJ\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:site\" content=\"@skynatstech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Sourav AJ\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/\"},\"author\":{\"name\":\"Sourav AJ\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\"},\"headline\":\"How to Install Yii Framework on Ubuntu Using Apache\",\"datePublished\":\"2025-10-13T13:07:00+00:00\",\"dateModified\":\"2025-10-14T06:09:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/\"},\"wordCount\":312,\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/image-1024x446.png\",\"keywords\":[\"Install Yii Framework on Ubuntu Using Apache\",\"linux server management services\",\"server management services\"],\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/\",\"name\":\"Install Yii Framework on Ubuntu Easily with Apache\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/image-1024x446.png\",\"datePublished\":\"2025-10-13T13:07:00+00:00\",\"dateModified\":\"2025-10-14T06:09:18+00:00\",\"description\":\"Learn how to Install Yii Framework on Ubuntu step-by-step. Simplify setup & boost performance\u2014get expert help today!\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/image.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/10\\\/image.png\",\"width\":1600,\"height\":697},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/how-to-install-yii-framework-on-ubuntu-using-apache\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Yii Framework on Ubuntu Using Apache\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"name\":\"Server Management Services | Cloud Management | Skynats\",\"description\":\"Server Management and Cloud Management\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#organization\",\"name\":\"Skynats Technologies\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"contentUrl\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/08\\\/Sknats-Logo-New-whole.png\",\"width\":989,\"height\":367,\"caption\":\"Skynats Technologies\"},\"image\":{\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/skynats\",\"https:\\\/\\\/x.com\\\/skynatstech\",\"https:\\\/\\\/www.instagram.com\\\/skynatstech\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/skynats-technologies\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCvTAjrFJ4_E2MJKwlDHomlg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.skynats.com\\\/blog\\\/#\\\/schema\\\/person\\\/255d12fc66a62db365022ecbb5846276\",\"name\":\"Sourav AJ\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g\",\"caption\":\"Sourav AJ\"}}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Install Yii Framework on Ubuntu Easily with Apache","description":"Learn how to Install Yii Framework on Ubuntu step-by-step. Simplify setup & boost performance\u2014get expert help today!","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.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Yii Framework on Ubuntu Using Apache","og_description":"Learn how to Install Yii Framework on Ubuntu step-by-step. Simplify setup & boost performance\u2014get expert help today!","og_url":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/","og_site_name":"Server Management Services | Cloud Management | Skynats","article_publisher":"https:\/\/www.facebook.com\/skynats","article_published_time":"2025-10-13T13:07:00+00:00","article_modified_time":"2025-10-14T06:09:18+00:00","og_image":[{"url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1024x446.png","type":"","width":"","height":""}],"author":"Sourav AJ","twitter_card":"summary_large_image","twitter_creator":"@skynatstech","twitter_site":"@skynatstech","twitter_misc":{"Written by":"Sourav AJ","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#article","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/"},"author":{"name":"Sourav AJ","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276"},"headline":"How to Install Yii Framework on Ubuntu Using Apache","datePublished":"2025-10-13T13:07:00+00:00","dateModified":"2025-10-14T06:09:18+00:00","mainEntityOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/"},"wordCount":312,"publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1024x446.png","keywords":["Install Yii Framework on Ubuntu Using Apache","linux server management services","server management services"],"articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/","url":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/","name":"Install Yii Framework on Ubuntu Easily with Apache","isPartOf":{"@id":"https:\/\/www.skynats.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#primaryimage"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#primaryimage"},"thumbnailUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image-1024x446.png","datePublished":"2025-10-13T13:07:00+00:00","dateModified":"2025-10-14T06:09:18+00:00","description":"Learn how to Install Yii Framework on Ubuntu step-by-step. Simplify setup & boost performance\u2014get expert help today!","breadcrumb":{"@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#primaryimage","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2025\/10\/image.png","width":1600,"height":697},{"@type":"BreadcrumbList","@id":"https:\/\/www.skynats.com\/blog\/how-to-install-yii-framework-on-ubuntu-using-apache\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.skynats.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Yii Framework on Ubuntu Using Apache"}]},{"@type":"WebSite","@id":"https:\/\/www.skynats.com\/blog\/#website","url":"https:\/\/www.skynats.com\/blog\/","name":"Server Management Services | Cloud Management | Skynats","description":"Server Management and Cloud Management","publisher":{"@id":"https:\/\/www.skynats.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.skynats.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.skynats.com\/blog\/#organization","name":"Skynats Technologies","url":"https:\/\/www.skynats.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","contentUrl":"https:\/\/www.skynats.com\/blog\/wp-content\/uploads\/2021\/08\/Sknats-Logo-New-whole.png","width":989,"height":367,"caption":"Skynats Technologies"},"image":{"@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/skynats","https:\/\/x.com\/skynatstech","https:\/\/www.instagram.com\/skynatstech\/","https:\/\/www.linkedin.com\/company\/skynats-technologies","https:\/\/www.youtube.com\/channel\/UCvTAjrFJ4_E2MJKwlDHomlg"]},{"@type":"Person","@id":"https:\/\/www.skynats.com\/blog\/#\/schema\/person\/255d12fc66a62db365022ecbb5846276","name":"Sourav AJ","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4a121e24658559577bd8d7ee7d696b05d5908df88dd32a6dfac5311f6fe26b86?s=96&d=mm&r=g","caption":"Sourav AJ"}}]}},"_links":{"self":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15841","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/users\/13"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/comments?post=15841"}],"version-history":[{"count":2,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15841\/revisions"}],"predecessor-version":[{"id":15844,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/posts\/15841\/revisions\/15844"}],"wp:attachment":[{"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/media?parent=15841"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/categories?post=15841"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skynats.com\/blog\/wp-json\/wp\/v2\/tags?post=15841"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}