Skip to content

Instantly share code, notes, and snippets.

@adamli
Created November 8, 2010 20:25
Show Gist options
  • Select an option

  • Save adamli/668204 to your computer and use it in GitHub Desktop.

Select an option

Save adamli/668204 to your computer and use it in GitHub Desktop.
Creating a virtual directory in Apache server
in httpd-vhosts.conf append:
Alias /crm/[app_name]/media/ "D:/xampp/htdocs/crm/_core/modules/crm/media/"
<Directory "D:/xampp/htdocs/crm/_core/modules/crm/media">
Options Indexes FollowSymLinks MultiViews ExecCGI
AllowOverride All
Order allow,deny
Allow from all
</Directory>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment