diff options
author | Frederic Guillot <fred@kanboard.net> | 2016-01-26 19:49:34 -0500 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2016-01-26 19:49:34 -0500 |
commit | caae2121520b22d6eb3ba26154f16d6c807ebb45 (patch) | |
tree | 930ac61b0b53f987e3231baf59b891f0cbdb5a07 /doc | |
parent | c9f43faa3fddc7fdd46c02450ba06ca0fea58c44 (diff) | |
parent | 85665e1280e8e4fbc688ff539d805946b2f4f672 (diff) |
Merge pull-request #1736
Diffstat (limited to 'doc')
-rw-r--r-- | doc/nice-urls.markdown | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/doc/nice-urls.markdown b/doc/nice-urls.markdown index 7cb8dbac..9fbb3510 100644 --- a/doc/nice-urls.markdown +++ b/doc/nice-urls.markdown @@ -86,3 +86,37 @@ define('ENABLE_URL_REWRITE', true); ``` Adapt the example above according to your own configuration. + +IIS configuration example +--------------------------- + +Create a web.config in you installation folder: + +```xml +<?xml version="1.0" encoding="UTF-8"?> +<configuration> + <system.webServer> + <rewrite> + <rules> + <rule name="Imported Rule 1" stopProcessing="true"> + <match url="^" ignoreCase="false" /> + <conditions logicalGrouping="MatchAll"> + <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> + </conditions> + <action type="Rewrite" url="index.php" appendQueryString="true" /> + </rule> + </rules> + </rewrite> + </system.webServer> +</configuration> + +``` + +In your Kanboard `config.php`: + +```php +define('ENABLE_URL_REWRITE', true); +``` + +Adapt the example above according to your own configuration. + |