1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-25 03:43:33 +01:00
freescout/.htaccess

6 lines
204 B
ApacheConf
Raw Normal View History

# On some hostings it is impossible to change web root directory
# so we rewrite all web requests into /public folder
<IfModule mod_rewrite.c>
RewriteEngine on
2019-06-15 16:52:34 +02:00
RewriteRule (.*) public/$1 [L]
</IfModule>