16 lines
431 B
ApacheConf
16 lines
431 B
ApacheConf
<VirtualHost *:80>
|
|
DocumentRoot /var/www/public
|
|
<Directory /var/www/public>
|
|
AllowOverride None
|
|
Order Allow,Deny
|
|
Allow from All
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
|
</IfModule>
|
|
</Directory>
|
|
CustomLog /dev/stdout combined
|
|
ErrorLog /dev/stderr
|
|
</VirtualHost> |