12 years ago
11 years ago
General Troubleshooting
3397
Is Microsoft IIS supported?
No sorry we do not directly support Microsoft IIS, only Apache is supported.
Some clients have successfully used IIS with the following module installed:
http://www.iis.net/downloads/microsoft/url-rewrite
After you have installed this module you then need to import the rules found in the .htaccess file:
http://www.iis.net/learn/extensions/url-rewrite-module/importing-apache-modrewrite-rules
The following is an example of a web.config file provided by an existing user of Tickets:
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <rewrite> <rules> <rule name="rule 1q" stopProcessing="true"> <match url="^(.*)$" /> <conditions> <add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true" /> </conditions> <action type="Rewrite" url="/index.php?url={R:1}" appendQueryString="true" /> </rule> </rules> </rewrite> <staticContent> <mimeMap fileExtension="js" mimeType="application/javascript" /> <mimeMap fileExtension="css" mimeType="text/css" /> </staticContent> </system.webServer> </configuration>