20 lines
415 B
Text
20 lines
415 B
Text
AddDefaultCharset UTF-8
|
|
|
|
<IfModule mod_autoindex.c>
|
|
Options -Indexes
|
|
</IfModule>
|
|
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
#RewriteBase /
|
|
|
|
RewriteRule ^favicon\.ico$ public/favicon.ico [L]
|
|
RewriteRule ^robots\.txt$ public/robots.txt [L]
|
|
|
|
RewriteRule !^public/ index.php [L]
|
|
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteRule ^public/ index.php [L]
|
|
|
|
RewriteRule \.dist\. index.php [L]
|
|
</IfModule>
|