{"id":3344,"date":"2019-01-11T21:52:30","date_gmt":"2019-01-11T16:22:30","guid":{"rendered":"https:\/\/blog.pheonixsolutions.com\/?p=3344"},"modified":"2019-01-16T08:08:12","modified_gmt":"2019-01-16T02:38:12","slug":"how-to-enable-htaccess-file-in-mac-os-x","status":"publish","type":"post","link":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/","title":{"rendered":"How to Enable htaccess file in Mac OS X"},"content":{"rendered":"\n<h4 class=\"wp-block-heading\">How to Enable htaccess file in Mac OS X<\/h4>\n\n\n\n<h5 class=\"wp-block-heading\">Date posted : 10\/01\/2019<\/h5>\n\n\n\n<p><strong>Introduction<\/strong><\/p>\n\n\n\n<p>Using your Mac for development of websites or web applications, is very easy as it already comes with Apache pre-installed in it.The problem is that <strong>.htaccess<\/strong> file does not work by default.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"722\" height=\"462\" src=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png\" alt=\"\" class=\"wp-image-3410\" srcset=\"https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png 722w, https:\/\/pheonixsolutions.com\/blog\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM-300x192.png 300w\" sizes=\"auto, (max-width: 722px) 100vw, 722px\" \/><\/figure>\n\n\n\n<h4 class=\"wp-block-heading\">Steps to Enabling htaccess file in Mac Os X:<\/h4>\n\n\n\n<p>Initially we have to make changes in the main configuration file of Apache.<br><\/p>\n\n\n\n<p>First some changes in the main configuration file of Apache.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo nano \/etc\/apache2\/httpd.conf\n\n\n\n<\/pre><\/div>\n\n\n<p>The first thing I will do is to change the Document root from the default&nbsp;<em>\/Library\/WebServer\/Documents<\/em>&nbsp;to my Sites folder under my home directory.<\/p>\n\n\n\n<p>So, look for these lines:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>DocumentRoot \"\/Library\/WebServer\/Documents\"<\/code><\/li><li><code>&lt;Directory \"\/Library\/WebServer\/Documents\"&gt;<\/code><\/li><\/ul>\n\n\n\n<p>And change them to:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><code>DocumentRoot \"\/Users\/your-username\/htdocs\"<\/code><\/li><li><code>&lt;Directory \"\/Users\/your-username\/htdocs\"&gt;<\/code><\/li><\/ul>\n\n\n\n<p>of course instead of&nbsp;<strong>your-username<\/strong>&nbsp;insert there your real username.<\/p>\n\n\n\n<p>In the same file, under the section&nbsp;<code>&lt;Directory \"\/Users\/your-username\/htdocs\"&gt;<\/code>&nbsp;look for:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>AllowOverride None<\/strong><\/li><\/ul>\n\n\n\n<p>And change it to:<\/p>\n\n\n\n<ul class=\"wp-block-list\"><li><strong>AllowOverride All<\/strong><\/li><\/ul>\n\n\n\n<p>Also edit this file:<\/p>\n\n\n\n<p>And look for the same line&nbsp;<em>AllowOverride None** and change it to *AllowOverride All<\/em><\/p>\n\n\n\n<p><strong>Step 1<\/strong> :Add this Symlinks with appropriate  &#8216; &#8211; &#8216; and &#8216; + &#8216; sign.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n#&amp;lt;\/Directory&gt;\n&amp;lt;Directory \/Users\/Your-Username\/htdocs&gt;\n Options -SymLinksIfOwnerMatch +FollowSymLinks\nAllowOverride All\n       Order deny,allow\n       Allow from all\n\n&amp;lt;\/Directory&gt;\n<\/pre><\/div>\n\n\n<p><strong>Step 2<\/strong> :<\/p>\n\n\n\n<p>The&nbsp;<code>mod_rewrite.so<\/code>&nbsp;is loaded. Take away the commented &#8221; # &#8221; tag from the config file.<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo nano \/etc\/apache2\/httpd.conf\n# Make sure below module &quot;mod_rewrite.so&quot; is loaded.\nLoadModule rewrite_module libexec\/apache2\/mod_rewrite.so\nLoadModule php5_module libexec\/apache2\/libphp5.so\n#LoadModule perl_module libexec\/apache2\/mod_perl.so\nLoadModule hfs_apple_module libexec\/apache2\/mod_hfs_apple.so\n<\/pre><\/div>\n\n\n<p><strong>Step 3:<\/strong><\/p>\n\n\n\n<p>Add <strong>Options +SymLinksIfOwnerMatch&nbsp;<\/strong> inside a htaccess file <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\n RewriteEngine On\n  RewriteCond $1 !^(index\\.php|resources|robots\\.txt)\n  RewriteCond %{REQUEST_FILENAME} !-f\n  RewriteCond %{REQUEST_FILENAME} !-d\n  RewriteRule ^(.*)$ index.php\/$1 &#x5B;L,QSA]\nOptions +SymLinksIfOwnerMatch\n<\/pre><\/div>\n\n\n<p><strong>Step 4 :<\/strong><\/p>\n\n\n\n<p>Then restart apache:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nsudo apachectl restart\n\n<\/pre><\/div>\n\n\n<p>You are now ready to put files to ~\/htdocs\/ folder and when you go to: http:\/\/localhost\/ you will see those files appear, and if you add a .htaccess file, that is going to work.Thus the htaccess file is enabled in your mac os x.<\/p>\n\n\n\n<p>Thank you! for using <strong>PHEONIX SOLUTIONS.<\/strong><\/p>\n\n\n\n<p>You find this tutorial helpful? Share with your friends to keep it alive.Be the first to comment, we value your suggestions. For further queries please comment below.<\/p>\n\n\n\n<p><br><\/p>\n\n\n\n<p><br><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Easy way to enable htaccess file in macos x . Usage for web development.<\/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":[536,535,533],"tags":[365,530,529],"class_list":{"0":"post-3344","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"hentry","6":"category-enable-htaccess-htaccess-htacess","7":"category-htaccess-htacess","8":"category-mac-os-x","9":"tag-htaccess","10":"tag-enable-htaccess","11":"tag-macos-x","12":"h-entry","14":"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-enable-htaccess-file-in-mac-os-x\/\" \/>\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=\"Easy way to enable htaccess file in macos x . Usage for web development.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/\" \/>\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=\"2019-01-11T16:22:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2019-01-16T02:38:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.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\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#\\\/schema\\\/person\\\/0ffa33d73c869faec2d50e79c24e3503\"},\"headline\":\"How to Enable htaccess file in Mac OS X\",\"datePublished\":\"2019-01-11T16:22:30+00:00\",\"dateModified\":\"2019-01-16T02:38:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/\"},\"wordCount\":294,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-11-at-3.00.25-PM.png\",\"keywords\":[\".htaccess\",\"Enable htaccess\",\"macos X\"],\"articleSection\":[\"enable htaccess\",\"htaccess\",\"mac os x\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/\",\"url\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/\",\"name\":\"Pheonix Solutions - We Empower Your Business Growth\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-11-at-3.00.25-PM.png\",\"datePublished\":\"2019-01-11T16:22:30+00:00\",\"dateModified\":\"2019-01-16T02:38:12+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#primaryimage\",\"url\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-11-at-3.00.25-PM.png\",\"contentUrl\":\"https:\\\/\\\/blog.pheonixsolutions.com\\\/wp-content\\\/uploads\\\/2019\\\/01\\\/Screen-Shot-2019-01-11-at-3.00.25-PM.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/how-to-enable-htaccess-file-in-mac-os-x\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pheonixsolutions.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Enable htaccess file in Mac OS X\"}]},{\"@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-enable-htaccess-file-in-mac-os-x\/","og_locale":"en_US","og_type":"article","og_title":"Pheonix Solutions - We Empower Your Business Growth","og_description":"Easy way to enable htaccess file in macos x . Usage for web development.","og_url":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/","og_site_name":"PHEONIXSOLUTIONS","article_publisher":"https:\/\/www.facebook.com\/PheonixSolutions-209942982759387\/","article_published_time":"2019-01-11T16:22:30+00:00","article_modified_time":"2019-01-16T02:38:12+00:00","og_image":[{"url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png","type":"","width":"","height":""}],"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\/how-to-enable-htaccess-file-in-mac-os-x\/#article","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/"},"author":{"name":"admin","@id":"https:\/\/pheonixsolutions.com\/blog\/#\/schema\/person\/0ffa33d73c869faec2d50e79c24e3503"},"headline":"How to Enable htaccess file in Mac OS X","datePublished":"2019-01-11T16:22:30+00:00","dateModified":"2019-01-16T02:38:12+00:00","mainEntityOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/"},"wordCount":294,"commentCount":1,"publisher":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#organization"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png","keywords":[".htaccess","Enable htaccess","macos X"],"articleSection":["enable htaccess","htaccess","mac os x"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/","url":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/","name":"Pheonix Solutions - We Empower Your Business Growth","isPartOf":{"@id":"https:\/\/pheonixsolutions.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#primaryimage"},"image":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#primaryimage"},"thumbnailUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png","datePublished":"2019-01-11T16:22:30+00:00","dateModified":"2019-01-16T02:38:12+00:00","breadcrumb":{"@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#primaryimage","url":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png","contentUrl":"https:\/\/blog.pheonixsolutions.com\/wp-content\/uploads\/2019\/01\/Screen-Shot-2019-01-11-at-3.00.25-PM.png"},{"@type":"BreadcrumbList","@id":"https:\/\/pheonixsolutions.com\/blog\/how-to-enable-htaccess-file-in-mac-os-x\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pheonixsolutions.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Enable htaccess file in Mac OS X"}]},{"@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-RW","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3344","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=3344"}],"version-history":[{"count":0,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/posts\/3344\/revisions"}],"wp:attachment":[{"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/media?parent=3344"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/categories?post=3344"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pheonixsolutions.com\/blog\/wp-json\/wp\/v2\/tags?post=3344"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}