{"id":1509,"date":"2017-05-25T20:13:29","date_gmt":"2017-05-25T14:43:29","guid":{"rendered":"https:\/\/pheonixsolutions.com\/blog\/?p=1509"},"modified":"2026-08-21T12:53:43","modified_gmt":"2026-08-21T07:23:43","slug":"adding-automatic-extension-php-nginx","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/","title":{"rendered":"Adding automatic extension (php) on nginx"},"content":{"rendered":"<h2>Introduction<\/h2>\n<p class=\"isSelectedEnd\">Many website owners prefer not to expose the programming language used to build their applications. For example, instead of accessing a page as <code dir=\"ltr\">https:\/\/example.com\/about.php<\/code>, it is often cleaner and more professional to use <code dir=\"ltr\">https:\/\/example.com\/about<\/code>.<\/p>\n<p class=\"isSelectedEnd\">In Apache, this can be achieved using <code dir=\"ltr\">.htaccess<\/code> rules. In Nginx, the same functionality can be implemented through URL rewriting and the <code dir=\"ltr\">try_files<\/code> directive.<\/p>\n<p class=\"isSelectedEnd\">This guide explains how to configure Nginx to automatically serve PHP files without requiring the <code dir=\"ltr\">.php<\/code> extension in the URL.<\/p>\n<h2>Prerequisites<\/h2>\n<p class=\"isSelectedEnd\">If Nginx is not already installed on your server, refer to the following installation guides:<\/p>\n<ul data-spread=\"false\">\n<li>Install Nginx, PHP, and MariaDB on Ubuntu<\/li>\n<li>Install Nginx, PHP-FPM, and MariaDB on CentOS 7<\/li>\n<\/ul>\n<h2>Implementation<\/h2>\n<p class=\"isSelectedEnd\">Open the Nginx configuration file. If you want this feature to apply only to a specific website, update the corresponding virtual host configuration instead of the default configuration.<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">vi \/etc\/nginx\/sites-enabled\/default<\/code><\/pre>\n<p class=\"isSelectedEnd\">Add the following configuration inside the server block:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">location \/ {\n    try_files $uri $uri.html $uri\/ @extensionless-php;\n    index index.html index.htm index.php;\n}\n\nlocation @extensionless-php {\n    rewrite ^(.*)$ $1.php last;\n}<\/code><\/pre>\n<h3>How It Works<\/h3>\n<ul data-spread=\"false\">\n<li><code dir=\"ltr\">try_files<\/code> checks whether the requested file or directory exists.<\/li>\n<li>If no matching file is found, the request is passed to the <code dir=\"ltr\">@extensionless-php<\/code> location.<\/li>\n<li>The rewrite rule automatically appends the <code dir=\"ltr\">.php<\/code> extension and processes the request.<\/li>\n<li>Users can access pages without exposing the PHP extension in the URL.<\/li>\n<\/ul>\n<p class=\"isSelectedEnd\"><strong>Example:<\/strong><\/p>\n<p class=\"isSelectedEnd\">Instead of:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">https:\/\/example.com\/contact.php<\/code><\/pre>\n<p class=\"isSelectedEnd\">Users can access:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">https:\/\/example.com\/contact<\/code><\/pre>\n<h2>Validate the Configuration<\/h2>\n<p class=\"isSelectedEnd\">Before restarting Nginx, verify that the configuration syntax is correct:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">nginx -t<\/code><\/pre>\n<p class=\"isSelectedEnd\">A successful validation will display:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">nginx: configuration file \/etc\/nginx\/nginx.conf test is successful<\/code><\/pre>\n<h2>Apply the Changes<\/h2>\n<p class=\"isSelectedEnd\">Restart the Nginx service for the new configuration to take effect:<\/p>\n<pre dir=\"ltr\"><code dir=\"ltr\">systemctl restart nginx<\/code><\/pre>\n<h2>Conclusion<\/h2>\n<p class=\"isSelectedEnd\">Configuring Nginx to automatically handle PHP extensions helps create cleaner, more user-friendly URLs while keeping the underlying technology hidden from visitors. This approach improves URL readability, provides a more professional appearance, and can be implemented with just a few lines of configuration.<\/p>\n<p>Always test the configuration using <code dir=\"ltr\">nginx -t<\/code> before restarting the service to avoid downtime caused by configuration errors.<\/p>\n<p>\u00a0<\/p>\n<div id=\"post-list\" role=\"main\">\n<div class=\"post-list-holder-by-time\">\n<div class=\"post-list__table\">\n<div id=\"virtualizedPostListContent\" class=\"post-list__content\">\n<div class=\"a11y__region\" data-a11y-sort-order=\"1\" data-a11y-focus-child=\"true\" data-a11y-order-reversed=\"true\" data-a11y-loop-navigation=\"false\" aria-label=\"message list main region\">\n<div class=\"post-list-holder-by-time\">\n<div class=\"post-list__table\">\n<div id=\"postListContent\" class=\"post-list__content\">\n<div>\n<div id=\"postListScrollContainer\" class=\"post-list__dynamic\">\n<div class=\"innerList\" role=\"list\">\n<div class=\"item_measurer\" role=\"listitem\">\n<div class=\"\">\n<div id=\"post_rgqri8smhig59fmktnccpuuuqw\" class=\"a11y__section post other--root\" aria-label=\"At 12:30 PM Friday, August 21, kaviya wrote, Related Articles\n----------------\n\n1.  **How to Use a Sub Folder in Default Controller Route in CodeIgniter 3**  \n    [How to Use a Sub Folder in Default Controller Route in CodeIgniter 3](https:\/\/pheonixsolutions.com\/blog\/use-sub-folder-default-controller-route-codeigniter-3\/?utm_source=chatgpt.com)\n2.  **Send Email Using HTML Templates in CodeIgniter**  \n    [Send Email Using HTML Templates in CodeIgniter](https:\/\/pheonixsolutions.com\/blog\/send-email-using-html-templates-codeigniter\/?utm_source=chatgpt.com)\n3.  **Currency Conversion and Symbol Library in CodeIgniter**  \n    [Currency Conversion and Symbol Library in CodeIgniter](https:\/\/pheonixsolutions.com\/blog\/currency-conversion-and-symbol-library-in-codeigniter\/?utm_source=chatgpt.com)\" data-testid=\"postView\">\n<div class=\"post__content\" data-testid=\"postContent\">\n<div>\n<div id=\"rgqri8smhig59fmktnccpuuuqw_message\" class=\"post__body\">\n<div class=\"AutoHeight\">\n<div>\n<div class=\"post-message post-message--collapsed\">\n<div class=\"post-message__text-container\">\n<div id=\"postMessageText_rgqri8smhig59fmktnccpuuuqw\" class=\"post-message__text\" dir=\"auto\">\n<h2 class=\"markdown__heading\">Related Articles<\/h2>\n<ol class=\"markdown__list\">\n<li><a href=\"https:\/\/pheonixsolutions.com\/blog\/phpmyadmin-configuration-storage-not-completely-configured-extended-features-deactivated\/\">The phpMyAdmin configuration storage is not completely configured, some extended features have been deactivated<\/a><\/li>\n<li><a href=\"https:\/\/pheonixsolutions.com\/blog\/insert-query-php-using-function\/\"><span data-sheets-root=\"1\">Insert query in php using function<\/span><\/a><\/li>\n<li><a href=\"https:\/\/pheonixsolutions.com\/blog\/php-ternary-operator\/\">PHP ternary operator<\/a><\/li>\n<li><a href=\"https:\/\/pheonixsolutions.com\/blog\/install-apache2-php7-mysql-redhat-7-server\/\">Install Apache2, php7, mysql on Redhat 7 server<\/a><\/li>\n<\/ol>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div class=\"post__body-reactions-acks\">\u00a0<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<div id=\"post-create\" class=\"post-create__container AdvancedTextEditor__ctr\" data-testid=\"post-create\"><form id=\"create_post\" data-testid=\"create-post\">\n<div class=\"postBoxIndicator\">\u00a0<\/div>\n<div class=\"AdvancedTextEditor formatting-bar\">\n<div class=\"AdvancedTextEditor__body\">\n<div id=\"advancedTextEditorCell\" class=\"AdvancedTextEditor__cell a11y__region\" tabindex=\"-1\" role=\"application\" data-a11y-sort-order=\"2\" aria-label=\"message input complementary region\">\n<div class=\"textarea-wrapper\">\n<div class=\"\">\n<div class=\"input-wrapper\">\u00a0<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/div>\n<\/form><\/div>\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction Many website owners prefer not to expose the programming language used to build their applications. For example, instead of accessing a page as https:\/\/example.com\/about.php, it is often cleaner and more professional to use https:\/\/example.com\/about. In Apache, this can be achieved using .htaccess rules. In Nginx, the same functionality can&hellip; <a href=\"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/\" class=\"more-link read-more\" rel=\"bookmark\">Continue Reading <span class=\"screen-reader-text\">Adding automatic extension (php) on nginx<\/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_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[340,225,298],"tags":[341,271,273],"class_list":{"0":"post-1509","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-codeigniter","7":"category-linux","8":"category-nginx","9":"tag-codeigniter","10":"tag-nginx","11":"tag-php","12":"h-entry","14":"h-as-article"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - 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\/adding-automatic-extension-php-nginx\/\" \/>\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 Many website owners prefer not to expose the programming language used to build their applications. For example, instead of accessing a page as https:\/\/example.com\/about.php, it is often cleaner and more professional to use https:\/\/example.com\/about. In Apache, this can be achieved using .htaccess rules. In Nginx, the same functionality can&hellip; Continue Reading Adding automatic extension (php) on nginx\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/\" \/>\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=\"2017-05-25T14:43:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-21T07:23:43+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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"Adding automatic extension (php) on nginx\",\"datePublished\":\"2017-05-25T14:43:29+00:00\",\"dateModified\":\"2026-08-21T07:23:43+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/\"},\"wordCount\":323,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"keywords\":[\"codeigniter\",\"Nginx\",\"php\"],\"articleSection\":[\"Codeigniter\",\"Linux\",\"Nginx\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"datePublished\":\"2017-05-25T14:43:29+00:00\",\"dateModified\":\"2026-08-21T07:23:43+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/adding-automatic-extension-php-nginx\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Adding automatic extension (php) on nginx\"}]},{\"@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:\\\/\\\/pheonixsolutions.com\\\/blog\"],\"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\/adding-automatic-extension-php-nginx\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Introduction Many website owners prefer not to expose the programming language used to build their applications. For example, instead of accessing a page as https:\/\/example.com\/about.php, it is often cleaner and more professional to use https:\/\/example.com\/about. In Apache, this can be achieved using .htaccess rules. In Nginx, the same functionality can&hellip; Continue Reading Adding automatic extension (php) on nginx","og_url":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2017-05-25T14:43:29+00:00","article_modified_time":"2026-08-21T07:23:43+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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"Adding automatic extension (php) on nginx","datePublished":"2017-05-25T14:43:29+00:00","dateModified":"2026-08-21T07:23:43+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/"},"wordCount":323,"commentCount":0,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"keywords":["codeigniter","Nginx","php"],"articleSection":["Codeigniter","Linux","Nginx"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/","url":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"datePublished":"2017-05-25T14:43:29+00:00","dateModified":"2026-08-21T07:23:43+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/adding-automatic-extension-php-nginx\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Adding automatic extension (php) on nginx"}]},{"@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:\/\/pheonixsolutions.com\/blog"],"url":"https:\/\/pheonixsolutions.com\/blog\/author\/admin\/"}]}},"jetpack_shortlink":"https:\/\/wp.me\/p7F4uM-ol","jetpack_sharing_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1509","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=1509"}],"version-history":[{"count":1,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1509\/revisions"}],"predecessor-version":[{"id":10959,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/1509\/revisions\/10959"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=1509"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=1509"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=1509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}