1
0
mirror of https://github.com/freescout-helpdesk/freescout.git synced 2024-11-24 11:22:42 +01:00
freescout/.htaccess

9 lines
413 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-07-13 05:51:45 +02:00
# On some hostings it does not work as "public/$1", but works as "/public/$1".
# But we can't write it as "/public/$1" because in this case it does not work
# when application is installed in subdirectory.
2019-06-15 16:52:34 +02:00
RewriteRule (.*) public/$1 [L]
</IfModule>