Skip to content

Inbound rewrite rules

tomolimo edited this page May 2, 2017 · 3 revisions

This section describes the Inbound rewrite rules.

Rewrite Module must already be installed.

For Apache

The following lines of the configuration file must be modified:

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /app.php [QSA,L]

Into

RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ /glpi/app.php [QSA,L]

For IIS

The correct setting is already included into the web.config file delivered by our own release

For Nginx

See the Nginx setting page, as it is already included

Clone this wiki locally