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

Developing a RESTful API with Node.js, Express.js, MongoDB, and TypeScript

The ability to create reliable APIs is essential in today's web development environment. I'll show…

1 month ago

XML in REST API response and SOAP XML.

The difference between XML that we get in response to any REST API and XML…

6 months ago

How to install and configure Apache2 on WSL2?

I hope you already have WSL2 installed and enabled. So, setting up Apache2 on WSL2…

10 months ago

How to install NVM on Windows?

Install NVM on Windows Node Js is a JavaScript runtime environment used widely in today’s…

12 months ago

How to reset WSL 2 user’s password?

You can easily reset WSL 2 users' password, by just following the following steps. Open…

1 year ago

DreamHost Web Hosting

DreamHost a web hosting company, founded in 1997. It is offering sort of hosting services,…

2 years ago