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

How to reset WSL 2 user’s password?

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

2 months ago

DreamHost Web Hosting

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

10 months ago

How to add submenu or menu in any specific menu option in WordPress programmatically?

Menus in WordPress are highly versatile and can be easily modified to change in your…

11 months ago

Laravel 8 error target class controller does not exist.

Laravel is famous and robust PHP framework, widely used in different type of projects. While…

1 year ago

Define Private Methods/Functions in Python Class.

Python is very powerful and famous language, which allow us to write code as per…

2 years ago

Working with dates in PHP.

In this article, I am going to show you how we can get specific dates…

2 years ago