WordPress

How to setup virtual host in XAMPP on Windows 10

In This Article, we will learn how setup virtual host in XAMPP server On windows 10 by following steps.

Step 1 : Go to XAMPP’s apache directory then navigate to conf\extra named folder

C:\xampp\apache\conf\extra

Step 2: Open httpd-vhosts.conf file and paste your expected virtual host URL

<VirtualHost *:80>
  ServerAdmin webmaster@localhost.com
  DocumentRoot c:\xampp\htdocs\developerdiary.in   
  ServerName localhost.developerdiary.in
</VirtualHost>

Wait don’t close still we are pending one more steps

Step 3 : Go to notepad RUN AS A ADMINISTRATOR

Step 4: Got to File and Open path C:\Windows\System32\drivers\etc and find file hosts and open it.

Now we just have to enter our host entry in the hosts file at end of the file save and close

127.0.0.1 localhost.developerdiary.in

Last step open your Apache or XAMPP server and restart your server and we finish.

Conclusion

Hope this article will help you how to create Virtual host on your localhost very easy steps. If any confusion or feedback please comment we are happy to help or reply here.

Know more about wordPress

  1. How to install gulp4
  2. Upgrade MySQL 5.7 to 8. on Ubuntu very easy step
  3. Why all sites now require SSL (https)
  4. Why We Need WordPress Website Backup and Restore
  5. The Importance of WordPress Website Security
Developer Diary

Share
Published by
Developer Diary
Tags: Tips

Recent Posts

Laravel vs Node Js: Which One Is Good For What?

Introduction In the world of web development, selecting the correct framework is critical. Laravel and…

3 months ago

Docker Cheatsheet: Essential Commands and Explanations

Introduction By enabling containerization, Docker has transformed the way software is built, deployed, and managed.…

8 months ago

Difference between Memcached and REDIS – Secrets of Caching

Introduction Speed and efficiency are critical in the ever-changing world of web development. Effective caching…

8 months ago

How to Revert a Git Commit: A Simple Example

Introduction Git, a popular version control system in software development, enables developers to track changes,…

8 months ago

What is Git Stash and Why Do You Need It

Introduction Are you tired of grappling with tangled changes and unfinished work while using Git?…

8 months ago

Difference between git stash pop and git stash apply

Introduction Version control is essential in software development because it ensures that changes to a…

8 months ago