Created
December 2, 2017 21:54
-
-
Save qWici/8432aedab823fa16320df76a8ab012ec to your computer and use it in GitHub Desktop.
XAMPP config for redirect to local site
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
// Add in end of file | |
<VirtualHost *:80> | |
DocumentRoot "C:/xampp/htdocs/{site_folder}" | |
ServerName {site_url} | |
<Directory "C:/xampp/htdocs/{site_folder}"> | |
Options Indexes FollowSymLinks Includes ExecCGI | |
AllowOverride All | |
Require all granted | |
</Directory> | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment