2018-11-07 10:32:37 +01:00
|
|
|
# On some hostings it is impossible to change web root directory
|
|
|
|
# so we rewrite all web requests into /public folder
|
2018-11-13 07:45:05 +01:00
|
|
|
<IfModule mod_rewrite.c>
|
|
|
|
RewriteEngine on
|
|
|
|
RewriteRule (.*) /public/$1 [L]
|
|
|
|
</IfModule>
|