03.10
php
saved
leveille
Note
Apache xampp Virtual Host setup
Apache xampp Virtual Host setup
- NameVirtualHost *:80
- <VirtualHost *:80>
- DocumentRoot /xampp/htdocs
- ServerName localhost
- <Directory />
- Options FollowSymLinks
- AllowOverride All
- </Directory>
- </VirtualHost>
- <VirtualHost *:80>
- ServerName app_name
- DocumentRoot /xampp/htdocs/app_directory
- <Directory />
- Options FollowSymLinks
- AllowOverride All
- </Directory>
- <Directory /xampp/htdocs/app_directory>
- Options Indexes FollowSymLinks
- AllowOverride All
- Order allow,deny
- Allow from all
- </Directory>
- </VirtualHost>
Parsed in 0.015 seconds, using GeSHi 1.0.7.14