PHP

Create sub domains on apache localhost.

Today I will tell you how to create sub domains on your localhost system using apache. It’s very easy just need to follow few steps.

  1. Decide sub domains that you want to create. I choose sub domain for phpmyadmin for instance.
    Like phpmyadmin.localhost
  2. Open you host file that is located in “Windows/System32/drivers/etc/” and add following line in it.
    127.0.0.1 phpmyadmin.localhost
  3. Open your httpd.conf file located in apache conf folder if you are using wamp then it’s exact path will be “wamp\bin\apache\Apache2.2.17\conf” and find following lines in it.
    # Virtual hosts
    #Include conf/extra/httpd-vhosts.conf
    Uncomment second line by removing hash sign(#).
  4. Open your httpd-vhosts.conf file located in extra folder of apache again if you are using wamp then it will be located in “wamp\bin\apache\Apache2.2.17\conf\extra\” file will look like following image.

    Do following changes.
    Write localhost in place of * like “NameVirtualHost localhost:80” and add following lines

     <VirtualHost phpmyadmin.localhost:80>
                ServerAdmin webmaster@dummy-host.hleclerc-PC.ingenidev
                DocumentRoot "E:/wamp/apps/phpmyadmin3.3.9/"
                ServerName phpmyadmin.localhost
                <Directory "E:/wamp/apps/phpmyadmin3.3.9/">
                    Options Indexes FollowSymLinks
                    AllowOverride FileInfo
                    Order allow,deny
                    Allow from all
                </Directory>
            </VirtualHost>
            

    phpmyadmin.localhost = SUBDOMAIN NAME
    E:/wamp/apps/phpmyadmin3.3.9/ = complete path of the site for which you want to create sub domain.

  5. Finally, restart your apache server
  6. If setting doesn’t work then you might need to restart system as some times host file changes require to restart system.
websourceblog

ReactJs, NodeJs, Amazon Web Services, Symfony, Laravel, CodeIgniter, Zend Framework, WordPress, Drupal, Magento, Angular

Recent Posts

30 Agents Every AI Engineer Must Build: A Blueprint for Production-Ready AI Systems

Most "AI agent" content online is still stuck at the demo stage — a slick…

3 weeks ago

Agentic Coding with Claude Code: The Book Every Developer Using AI Should Read

If you've been using Claude Code as little more than a fancy autocomplete — typing…

3 weeks ago

Centralizing Email Logging in Laravel with a Custom EmailLogChannel

When building real-world Laravel applications, email handling quickly becomes scattered. You send emails from controllers,…

4 months ago

Clean, Powerful API Filtering with Spatie Query Builder

Build flexible, readable, and secure query filters across multiple Laravel models — no more bloated…

6 months ago

AI Prompt Engineering Bible (7 Books in 1) – Master ChatGPT & Generative AI

Artificial Intelligence is transforming how we work, create, and earn. But most people get stuck…

12 months ago

How Digital Transformation Services Drive Business Growth

In today’s fast-paced world, businesses can no longer rely solely on traditional methods to stay…

12 months ago