Skip to content

Instantly share code, notes, and snippets.

@qWici
Created December 2, 2017 21:54
Show Gist options
  • Save qWici/8432aedab823fa16320df76a8ab012ec to your computer and use it in GitHub Desktop.
Save qWici/8432aedab823fa16320df76a8ab012ec to your computer and use it in GitHub Desktop.
XAMPP config for redirect to local site
// 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