16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
<VirtualHost *>
|
|
DocumentRoot "/var/www/app/public"
|
|
ServerName 127.0.0.1
|
|
DirectoryIndex index.php
|
|
<Directory "/var/www/app/public">
|
|
AllowOverride All
|
|
Allow from All
|
|
|
|
<IfModule mod_rewrite.c>
|
|
Options -MultiViews
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
|
</IfModule>
|
|
</Directory>
|
|
</VirtualHost> |