0

ユーザーがURLにアクセスしたときにwww.example.comルールは適用されませんが、ユーザーがアクセスしたときのwww.example.com/something elseルールは次のようになります。

->http://www.example.com/something else
->http://www.example.com/something else1
->http://www.example.com/something else2
AuthType shibboleth
ShibRequireSession On
Require user

ただし、同時にユーザーがアクセスした場合、www.example.com/someother thingこれらのルールを URL に適用するべきではありません。

別のフォルダを作成して .htaccess を別に書きたくないので、

可能ですか、教えてください!!

4

1 に答える 1

0

これを使って、

AuthType shibboleth   
ShibRequireSession Off
require shibboleth

そして、次のようなリンクを呼び出します/Shibboleth.sso/Login?target=http://www.example.com/something else2

そして、環境変数をキャッチして、HTTP_SHIB_... variableshibboleth 認証を使用します

于 2013-05-30T15:27:55.270 に答える