Created
February 13, 2021 11:12
-
-
Save vishnusomanus/963afeaa43108e28f7f88aed60a0ca4a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FILE=C:\xampp\apache\conf\httpd.conf | |
LoadModule vhost_alias_module modules/mod_vhost_alias.so | |
FILE=C:\xampp\apache\conf\extra\httpd-vhosts.conf | |
UseCanonicalName Off | |
<VirtualHost *:80> | |
DocumentRoot "C:/xampp/htdocs/" | |
ServerName localhost | |
</VirtualHost> | |
<VirtualHost *:80> | |
ServerAlias *.localhost | |
VirtualDocumentRoot "C:/xampp/htdocs/%1/" | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment