<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>wordpress blog url setup Archives - Artificial Intelligence</title>
	<atom:link href="https://www.aiuniverse.xyz/tag/wordpress-blog-url-setup/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.aiuniverse.xyz/tag/wordpress-blog-url-setup/</link>
	<description>Exploring the universe of Intelligence</description>
	<lastBuildDate>Sat, 14 Feb 2026 07:36:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
	<item>
		<title>How to Install WordPress Inside a blog Folder on Linux (XAMPP Public Directory)</title>
		<link>https://www.aiuniverse.xyz/how-to-install-wordpress-inside-a-blog-folder-on-linux-xampp-public-directory/</link>
					<comments>https://www.aiuniverse.xyz/how-to-install-wordpress-inside-a-blog-folder-on-linux-xampp-public-directory/#respond</comments>
		
		<dc:creator><![CDATA[Maruti Kr.]]></dc:creator>
		<pubDate>Sat, 14 Feb 2026 07:36:25 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[install wordpress in subdirectory]]></category>
		<category><![CDATA[install wordpress in xampp linux]]></category>
		<category><![CDATA[install wordpress manually linux server]]></category>
		<category><![CDATA[install wordpress on local linux server]]></category>
		<category><![CDATA[linux server wordpress configuration]]></category>
		<category><![CDATA[linux wordpress install]]></category>
		<category><![CDATA[wordpress blog folder setup]]></category>
		<category><![CDATA[wordpress blog setup tutorial]]></category>
		<category><![CDATA[wordpress blog url setup]]></category>
		<category><![CDATA[wordpress database setup linux]]></category>
		<category><![CDATA[wordpress install in project public folder]]></category>
		<category><![CDATA[wordpress install on linux]]></category>
		<category><![CDATA[wordpress install using terminal]]></category>
		<category><![CDATA[wordpress installation guide linux]]></category>
		<category><![CDATA[wordpress manual installation steps]]></category>
		<category><![CDATA[wordpress setup apache linux]]></category>
		<category><![CDATA[wordpress setup for laravel public folder]]></category>
		<category><![CDATA[wordpress setup in public folder]]></category>
		<category><![CDATA[wordpress subfolder installation guide]]></category>
		<category><![CDATA[xampp wordpress installation steps]]></category>
		<guid isPermaLink="false">https://www.aiuniverse.xyz/?p=21809</guid>

					<description><![CDATA[<p>If you are running a Linux server with XAMPP and want to install WordPress inside a blog folder within your project’s public directory, this step-by-step guide will <a class="read-more-link" href="https://www.aiuniverse.xyz/how-to-install-wordpress-inside-a-blog-folder-on-linux-xampp-public-directory/">Read More</a></p>
<p>The post <a href="https://www.aiuniverse.xyz/how-to-install-wordpress-inside-a-blog-folder-on-linux-xampp-public-directory/">How to Install WordPress Inside a blog Folder on Linux (XAMPP Public Directory)</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p>If you are running a Linux server with XAMPP and want to install WordPress inside a <strong><code>blog</code></strong> folder within your project’s public directory, this step-by-step guide will help you set it up properly.<br>In this example, WordPress will be installed at:</p>



<pre class="wp-block-code"><code>/opt/lampp/htdocs/hyderabadorbit.com/public/blog</code></pre>



<p>After installation, your blog will be accessible at:</p>



<pre class="wp-block-code"><code>https:&#47;&#47;yourdomain.com/blog</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 1 — Navigate to the Public Directory</h2>



<p>Open your terminal and move to your project’s public folder:</p>



<pre class="wp-block-code"><code>cd /opt/lampp/htdocs/hyderabadorbit.com/public</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 2 — Download the Latest WordPress Package</h2>



<p>Download the latest WordPress version directly from the official source:</p>



<pre class="wp-block-code"><code>wget https://wordpress.org/latest.zip</code></pre>



<p>Extract the downloaded file:</p>



<pre class="wp-block-code"><code>unzip latest.zip</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 3 — Rename the WordPress Folder to blog</h2>



<p>Rename the extracted folder so that WordPress runs under the <code>/blog</code> URL:</p>



<pre class="wp-block-code"><code>mv wordpress blog</code></pre>



<p>Now your WordPress files will be located at:</p>



<pre class="wp-block-code"><code>public/blog</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 4 — Set Proper Permissions</h2>



<p>Since you are using XAMPP, set ownership and permissions for the web server:</p>



<pre class="wp-block-code"><code>sudo chown -R daemon:daemon blog
sudo chmod -R 755 blog</code></pre>



<p>This ensures Apache can access and manage the files correctly.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 5 — Create a Database for WordPress</h2>



<p>Open MySQL using XAMPP:</p>



<pre class="wp-block-code"><code>/opt/lampp/bin/mysql -u root -p</code></pre>



<p>Create a new database and user:</p>



<pre class="wp-block-code"><code>CREATE DATABASE blog_db;
CREATE USER 'blog_user'@'localhost' IDENTIFIED BY 'StrongPassword';
GRANT ALL PRIVILEGES ON blog_db.* TO 'blog_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 6 — Restart XAMPP Services</h2>



<p>Restart XAMPP to apply changes:</p>



<pre class="wp-block-code"><code>sudo /opt/lampp/lampp restart</code></pre>



<hr class="wp-block-separator has-alpha-channel-opacity"/>



<h2 class="wp-block-heading">Step 7 — Complete WordPress Installation via Browser</h2>



<p>Open your browser and go to:</p>



<pre class="wp-block-code"><code>https:&#47;&#47;yourdomain.com/blog</code></pre>



<p>Enter the following database details:</p>



<ul class="wp-block-list">
<li>Database Name: <code>blog_db</code></li>



<li>Username: <code>blog_user</code></li>



<li>Password: <code>StrongPassword</code></li>



<li>Database Host: <code>localhost</code></li>
</ul>



<p>Click <strong>Install WordPress</strong>, and follow the on-screen instructions.</p>



<hr class="wp-block-separator has-alpha-channel-opacity"/>
<p>The post <a href="https://www.aiuniverse.xyz/how-to-install-wordpress-inside-a-blog-folder-on-linux-xampp-public-directory/">How to Install WordPress Inside a blog Folder on Linux (XAMPP Public Directory)</a> appeared first on <a href="https://www.aiuniverse.xyz">Artificial Intelligence</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.aiuniverse.xyz/how-to-install-wordpress-inside-a-blog-folder-on-linux-xampp-public-directory/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
