21 lines
559 B
Plaintext
21 lines
559 B
Plaintext
|
Alias @web_path@ @prefix@/public
|
||
|
<Directory "@prefix@/public">
|
||
|
DirectoryIndex index.php
|
||
|
Options -MultiViews -Indexes +FollowSymLinks
|
||
|
Options SymLinksIfOwnerMatch
|
||
|
AllowOverride AuthConfig FileInfo
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
|
||
|
SetEnv APPLICATION_ENV development
|
||
|
RewriteBase @web_path@
|
||
|
RewriteEngine On
|
||
|
RewriteCond %{REQUEST_FILENAME} -s [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -l [OR]
|
||
|
RewriteCond %{REQUEST_FILENAME} -d
|
||
|
RewriteRule ^.*$ - [NC,L]
|
||
|
RewriteRule ^.*$ index.php [NC,L]
|
||
|
|
||
|
</Directory>
|
||
|
|