mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
15 lines
No EOL
349 B
Text
15 lines
No EOL
349 B
Text
#
|
|
# Apache configuration file to use API
|
|
#
|
|
|
|
DirectoryIndex index.php
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
RewriteRule ^$ index.php [QSA,L]
|
|
RewriteCond %{REQUEST_FILENAME} !-f
|
|
RewriteCond %{REQUEST_FILENAME} !-d
|
|
RewriteRule ^(.*)$ index.php [QSA,L]
|
|
</IfModule>
|
|
<IfModule mod_php5.c>
|
|
php_flag display_errors On
|
|
</IfModule> |