03.10 php saved
leveille
Tags add more
Apache  
Note
Apache xampp Virtual Host setup
  1. NameVirtualHost *:80
  2.  
  3. <VirtualHost *:80>
  4.   DocumentRoot /xampp/htdocs
  5.   ServerName localhost
  6.   <Directory />
  7.     Options FollowSymLinks
  8.     AllowOverride All
  9.   </Directory>
  10. </VirtualHost>
  11.  
  12. <VirtualHost *:80>
  13.   ServerName app_name
  14.   DocumentRoot /xampp/htdocs/app_directory
  15.   <Directory />
  16.     Options FollowSymLinks
  17.     AllowOverride All
  18.   </Directory>
  19.   <Directory /xampp/htdocs/app_directory>
  20.     Options Indexes FollowSymLinks
  21.     AllowOverride All
  22.     Order allow,deny
  23.     Allow from all
  24.   </Directory>
  25. </VirtualHost>
Parsed in 0.015 seconds, using GeSHi 1.0.7.14

Modify this Paste