I read through the documentation and followed the instruction to install and configure JoomSEF closely, but I can't get it to work so far. I mean it generates the new URLs just fine, but I simply can't load the corresponding web page. I always get error 500 which basically indicates that IIS can't find the page.
Here is what I did:
1. Modify .htaccess
It is my understanding that I don't need to uncomment RewriteBase on IIS. The web page is located in the root directory of the web server.
Please note that I also tried it with RewriteBase being uncommented. Same result!
#RewriteBase /
########## Begin - Joomla! core SEF Section
#
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !^/index.php
RewriteCond %{REQUEST_URI} (/|\.php|\.html|\.htm|\.feed|\.pdf|\.raw|/[^.]*)$ [NC]
RewriteRule (.*) index.php
RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization},L]
#
########## End - Joomla! core SEF Section
2. Update IIS configuration
The latest version of IIS comes with a URL Rewrite utility. I am using the latest available version of this utility. This version allows me to import my .htaccess file into IIS. It imported successfully.
At this point I am not sure what else I can try. Did anybody get it to work on IIS?
Thanks,
Jens