Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save cakper/5450304 to your computer and use it in GitHub Desktop.
Save cakper/5450304 to your computer and use it in GitHub Desktop.
<VirtualHost *:80>
   DocumentRoot /mnt/project/web
   RewriteEngine On
   RewriteCond %{DOCUMENT_ROOT}/$1 !-f
   RewriteRule ^/direcory/(.*)$ /direcory/app_dev.php [QSA,L,PT]
   Alias /direcory /mnt/project/web
   <Directory /mnt/project/web>
     Options Indexes FollowSymLinks MultiViews
     AllowOverride None
     Order allow,deny
     allow from all
   </Directory>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment