mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-07 18:18:18 +01:00
15 lines
349 B
ApacheConf
15 lines
349 B
ApacheConf
#
|
|
# 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> |