1

I need to have SSPI auth on the adress " / ", but not on the rest of the site

I've tried this configuration :

 <Location "/">
        AuthType SSPI
        AuthName "XXXX"
        SSPIAuth On
        SSPIAuthoritative On
        SSPIOfferBasic On
        Require valid-user
    </Location>

    <Location "/?*">
        AuthType none
    </Location>

But it's not doing what I want. Instead of having one login entry point, it pop auth like 4 times and doesn't log me.

Any idea ?

Thanks :)

1 Answers1

2

Use LocationMatch ^/$ in the first block and nothing else.

covener
  • 1,685
  • 9
  • 15