We launched new forums in March 2019—join us there. In a hurry for help with your website? Get Help Now!
    • 36803
    • 6 Posts
    I have ISAPI 2.7 on IIS / Revolution 2.2.2
    Attempting to get Friendly URLs to work
    Have successfully gotten FURLs working on other Linux installations using .htaccess no problem.
    Some simple test redirects are working with ISAPI so no problem there.

    I tried following suggested rewrite rules from
    http://forums.modx.com/thread/45576/solved-using-yams-on-iis and from many other forum threads on IIS rewrite rules. No success.

    The following rules

    [ISAPI_Rewrite]
    # Exclude /assets and /manager directories from rewrite rules
    RewriteRule /(?:manager|assets).* $0 [I,L]
    RewriteRule /(?!(?:img|style.css|assets|manager))(.*) /index.php\?q=$1 [I,L]
    


    gets the Firefox error when attempting to access http://www.mydomain.com/about.html
    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    


    Other versions of http.ini I've tried usually get me a 404 error.

    I'm hoping somebody might be able to provide a standard http.ini file for v2.7 ISAPI that translates the usual .htaccess rules used for FURLs