Window server config for Mendix application

1
I have don all the steps mentioned in the documention to set up my application with deeplink. Here is my fusion writer's file: RewriteEngine On RewriteCond %{QUERY_STRING} ^(.+)$ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond $1 !^ui RewriteCond $1 !^forms RewriteCond $1 !^mxclientsystem RewriteCond $1 !^widgets RewriteRule ^/?(.*) http://localhost:87/$1?%1 [P,L,R] RewriteRule ^/link/?(.*) http://localhost:87/link/$1 [P] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond $1 !^ui RewriteCond $1 !^forms RewriteCond $1 !^mxclientsystem RewriteCond $1 !^widgets RewriteRule ^/?(.*) http://localhost:87/$1 [P,R] RewriteRule ^/link/?(.*) http://localhost:87/link/$1 [P] I have set the Web site in IIS as described in the documentation, and even set the deeplink.loginlocation constant. However my deeplink still dosen't work?? In Internet explorer when i try to navigate to the page, the web page just never loads, on firefox the webpage says "The page isn't redirecting properly" Help??
asked
1 answers
5

Move the ^/link/?(.*) one up to give it prevalence over the ^/?(.*)

If you are working on W2008 consider switching to ARR. That is more easy to configure with Mendix.

answered