{"id":387,"date":"2026-01-13T16:09:13","date_gmt":"2026-01-13T10:39:13","guid":{"rendered":"https:\/\/tutorialsmines.com\/blog\/?p=387"},"modified":"2026-01-13T16:09:13","modified_gmt":"2026-01-13T10:39:13","slug":"how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts","status":"publish","type":"post","link":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/","title":{"rendered":"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts)"},"content":{"rendered":"\n<p>Running multiple projects on a single domain can be challenging, especially when different frameworks and platforms are involved. A very common real-world requirement is to run:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A <strong>Laravel application<\/strong><\/li>\n\n\n\n<li>An <strong>HTML website<\/strong><\/li>\n\n\n\n<li>A <strong>WordPress blog<\/strong><\/li>\n<\/ul>\n\n\n\n<p>\u2014all under the same domain.<\/p>\n\n\n\n<p>In this blog, we will explain <strong>how to properly run a WordPress blog inside a subfolder when Laravel and HTML projects are already running smoothly<\/strong>, and how to fix the common <strong>\u201cOops! That page can\u2019t be found\u201d<\/strong> error in WordPress.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Understanding the Current Setup<\/h2>\n\n\n\n<p>Your server directory structure looks like this:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>public_html\/keralaorbit.com            \u2192 Laravel project\npublic_html\/keralaorbit.com\/public     \u2192 HTML project\npublic_html\/keralaorbit.com\/public\/blog \u2192 WordPress project\n<\/code><\/pre>\n\n\n\n<p>Behavior observed:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Laravel project works correctly \u2705<\/li>\n\n\n\n<li>HTML site works correctly \u2705<\/li>\n\n\n\n<li>WordPress loads, but shows <strong>WordPress 404 page<\/strong> \u274c<\/li>\n<\/ul>\n\n\n\n<p>This confirms that:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The server is accessing WordPress<\/li>\n\n\n\n<li>But <strong>WordPress URL and rewrite configuration are incorrect<\/strong><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Why the WordPress 404 Error Happens<\/h2>\n\n\n\n<p>The error:<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>\u201cOops! That page can\u2019t be found.\u201d<\/p>\n<\/blockquote>\n\n\n\n<p>is <strong>not a server error<\/strong>.<br>It is a <strong>WordPress internal 404<\/strong>, which usually happens when:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress <strong>does not know its correct base URL<\/strong><\/li>\n\n\n\n<li>Permalinks are misconfigured<\/li>\n\n\n\n<li>Rewrite rules do not match the actual folder path<\/li>\n<\/ul>\n\n\n\n<p>In this case, WordPress is running inside:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>\/public\/blog\n<\/code><\/pre>\n\n\n\n<p>But WordPress is <strong>not aware of this full path<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1: Fix WordPress Site URL and Home URL (Most Important)<\/h2>\n\n\n\n<p>The fastest and safest way is to force the correct URLs in <code>wp-config.php<\/code>.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">File Path<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>public_html\/keralaorbit.com\/public\/blog\/wp-config.php\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Add the following lines <strong>before<\/strong>:<\/h3>\n\n\n\n<p><code>That's all, stop editing!<\/code><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>define('WP_HOME', 'https:\/\/keralaorbit.com\/public\/blog');\ndefine('WP_SITEURL', 'https:\/\/keralaorbit.com\/public\/blog');\n<\/code><\/pre>\n\n\n\n<p>After saving, open:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;keralaorbit.com\/public\/blog\/\n<\/code><\/pre>\n\n\n\n<p>This step alone fixes most WordPress 404 issues.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2: Fix WordPress <code>.htaccess<\/code> Rewrite Rules<\/h2>\n\n\n\n<p>WordPress permalinks require correct rewrite rules when installed in a subfolder.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">File Path<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>public_html\/keralaorbit.com\/public\/blog\/.htaccess\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Use This Configuration<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code># BEGIN WordPress\n&lt;IfModule mod_rewrite.c&gt;\nRewriteEngine On\nRewriteBase \/public\/blog\/\nRewriteRule ^index\\.php$ - &#91;L]\n\nRewriteCond %{REQUEST_FILENAME} !-f\nRewriteCond %{REQUEST_FILENAME} !-d\nRewriteRule . \/public\/blog\/index.php &#91;L]\n&lt;\/IfModule&gt;\n# END WordPress\n<\/code><\/pre>\n\n\n\n<p>This ensures all blog URLs route correctly through WordPress.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3: Re-save WordPress Permalinks<\/h2>\n\n\n\n<p>Login to WordPress Admin:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;keralaorbit.com\/public\/blog\/wp-admin\n<\/code><\/pre>\n\n\n\n<p>Then:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Go to <strong>Settings \u2192 Permalinks<\/strong><\/li>\n\n\n\n<li>Click <strong>Save Changes<\/strong> (no need to change anything)<\/li>\n<\/ol>\n\n\n\n<p>This regenerates rewrite rules automatically.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4: Exclude the Blog Folder from HTML\/Laravel Rewrite Rules<\/h2>\n\n\n\n<p>To avoid Laravel or HTML rewrite rules interfering with WordPress, update the <code>.htaccess<\/code> of the HTML project.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">File Path<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>public_html\/keralaorbit.com\/public\/.htaccess\n<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Add This at the Top<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>RewriteEngine On\n\n# Allow WordPress blog folder\nRewriteCond %{REQUEST_URI} ^\/public\/blog($|\/) &#91;NC]\nRewriteRule ^ - &#91;L]\n<\/code><\/pre>\n\n\n\n<p>This tells the server:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Requests to <code>\/public\/blog<\/code> should <strong>bypass Laravel\/HTML<\/strong><\/li>\n\n\n\n<li>WordPress should handle them directly<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Why This Setup Works<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Laravel continues to handle application routes<\/li>\n\n\n\n<li>HTML pages load normally from the <code>public<\/code> folder<\/li>\n\n\n\n<li>WordPress gets full control of <code>\/public\/blog<\/code><\/li>\n\n\n\n<li>No rewrite conflicts<\/li>\n\n\n\n<li>No routing overlap<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Important Notes<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress <strong>can run perfectly inside a subfolder<\/strong><\/li>\n\n\n\n<li>Laravel and WordPress <strong>do not conflict<\/strong> if rewrite rules are handled correctly<\/li>\n\n\n\n<li>This setup is commonly used for content-heavy sites<\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Best Practice Recommendation (Optional)<\/h2>\n\n\n\n<p>For cleaner URLs and better SEO, consider running WordPress at:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;keralaorbit.com\/blog\n<\/code><\/pre>\n\n\n\n<p>instead of:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>https:&#47;&#47;keralaorbit.com\/public\/blog\n<\/code><\/pre>\n\n\n\n<p>However, the steps above fully support your <strong>existing structure without changes<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>If you are running Laravel, HTML, and WordPress on the same domain, a WordPress 404 error usually means <strong>URL and rewrite mismatch<\/strong>, not a server problem.<\/p>\n\n\n\n<p>By:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Correctly setting <code>WP_HOME<\/code> and <code>WP_SITEURL<\/code><\/li>\n\n\n\n<li>Fixing WordPress rewrite rules<\/li>\n\n\n\n<li>Excluding the blog folder from Laravel\/HTML rewrites<\/li>\n<\/ul>\n\n\n\n<p>\u2014you can run all three projects smoothly on the same domain.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n","protected":false},"excerpt":{"rendered":"<p>Running multiple projects on a single domain can be challenging, especially when different frameworks and platforms are involved. A very common real-world requirement is to<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[431,430,432],"tags":[434,435,438,433,436,437,439,442,443,440,441],"class_list":["post-387","post","type-post","status-publish","format-standard","hentry","category-html","category-laravel","category-wordpress","tag-fix-wordpress-404-in-subdirectory","tag-hosting-laravel-and-wordpress-together","tag-laravel-and-wordpress-htaccess-configuration","tag-laravel-and-wordpress-on-same-domain","tag-laravel-html-wordpress-integration","tag-laravel-public-folder-wordpress-blog","tag-laravel-wordpress-coexistence","tag-run-multiple-projects-on-one-domain","tag-run-wordpress-inside-laravel-project","tag-wordpress-rewrite-rules-subfolder","tag-wordpress-subfolder-setup-with-laravel"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts) - tutorialsmines.com<\/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:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts) - tutorialsmines.com\" \/>\n<meta property=\"og:description\" content=\"Running multiple projects on a single domain can be challenging, especially when different frameworks and platforms are involved. A very common real-world requirement is to\" \/>\n<meta property=\"og:url\" content=\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\" \/>\n<meta property=\"og:site_name\" content=\"tutorialsmines.com\" \/>\n<meta property=\"article:published_time\" content=\"2026-01-13T10:39:13+00:00\" \/>\n<meta name=\"author\" content=\"Maruti_Kr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Maruti_Kr\" \/>\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:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\"},\"author\":{\"name\":\"Maruti_Kr\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e\"},\"headline\":\"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts)\",\"datePublished\":\"2026-01-13T10:39:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\"},\"wordCount\":482,\"commentCount\":0,\"keywords\":[\"fix WordPress 404 in subdirectory\",\"hosting Laravel and WordPress together\",\"Laravel and WordPress .htaccess configuration\",\"Laravel and WordPress on same domain\",\"Laravel HTML WordPress integration\",\"Laravel public folder WordPress blog\",\"Laravel WordPress coexistence\",\"run multiple projects on one domain\",\"run WordPress inside Laravel project\",\"WordPress rewrite rules subfolder\",\"WordPress subfolder setup with Laravel\"],\"articleSection\":[\"HTML\",\"Laravel\",\"WordPress\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\",\"url\":\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\",\"name\":\"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts) - tutorialsmines.com\",\"isPartOf\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#website\"},\"datePublished\":\"2026-01-13T10:39:13+00:00\",\"author\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e\"},\"breadcrumb\":{\"@id\":\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/tutorialsmines.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#website\",\"url\":\"https:\/\/tutorialsmines.com\/blog\/\",\"name\":\"tutorialsmines.com\",\"description\":\"tutorialsmines blog site\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/tutorialsmines.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e\",\"name\":\"Maruti_Kr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g\",\"caption\":\"Maruti_Kr\"},\"sameAs\":[\"https:\/\/tutorialsmines.com\/blog\"],\"url\":\"https:\/\/tutorialsmines.com\/blog\/author\/maruti_kr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts) - tutorialsmines.com","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:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/","og_locale":"en_US","og_type":"article","og_title":"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts) - tutorialsmines.com","og_description":"Running multiple projects on a single domain can be challenging, especially when different frameworks and platforms are involved. A very common real-world requirement is to","og_url":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/","og_site_name":"tutorialsmines.com","article_published_time":"2026-01-13T10:39:13+00:00","author":"Maruti_Kr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Maruti_Kr","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#article","isPartOf":{"@id":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/"},"author":{"name":"Maruti_Kr","@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e"},"headline":"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts)","datePublished":"2026-01-13T10:39:13+00:00","mainEntityOfPage":{"@id":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/"},"wordCount":482,"commentCount":0,"keywords":["fix WordPress 404 in subdirectory","hosting Laravel and WordPress together","Laravel and WordPress .htaccess configuration","Laravel and WordPress on same domain","Laravel HTML WordPress integration","Laravel public folder WordPress blog","Laravel WordPress coexistence","run multiple projects on one domain","run WordPress inside Laravel project","WordPress rewrite rules subfolder","WordPress subfolder setup with Laravel"],"articleSection":["HTML","Laravel","WordPress"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/","url":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/","name":"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts) - tutorialsmines.com","isPartOf":{"@id":"https:\/\/tutorialsmines.com\/blog\/#website"},"datePublished":"2026-01-13T10:39:13+00:00","author":{"@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e"},"breadcrumb":{"@id":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/tutorialsmines.com\/blog\/how-to-run-laravel-html-and-wordpress-together-on-the-same-domain-without-conflicts\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/tutorialsmines.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Run Laravel, HTML, and WordPress Together on the Same Domain (Without Conflicts)"}]},{"@type":"WebSite","@id":"https:\/\/tutorialsmines.com\/blog\/#website","url":"https:\/\/tutorialsmines.com\/blog\/","name":"tutorialsmines.com","description":"tutorialsmines blog site","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/tutorialsmines.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/1bbf82fe79564d58c87f7076d970a88e","name":"Maruti_Kr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/tutorialsmines.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f034f072d7301d08343a196599eef74e13fea2b75b55086c7dab4c93efb92ec5?s=96&d=mm&r=g","caption":"Maruti_Kr"},"sameAs":["https:\/\/tutorialsmines.com\/blog"],"url":"https:\/\/tutorialsmines.com\/blog\/author\/maruti_kr\/"}]}},"_links":{"self":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts\/387","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/comments?post=387"}],"version-history":[{"count":1,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts\/387\/revisions"}],"predecessor-version":[{"id":388,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/posts\/387\/revisions\/388"}],"wp:attachment":[{"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/media?parent=387"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/categories?post=387"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tutorialsmines.com\/blog\/wp-json\/wp\/v2\/tags?post=387"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}