だから私はSLL証明書を挿入し、今私が持っているweb.configファイルのコードに挿入しました
コード:
<system.webServer>
<rewrite>
<rules>
<rule name="removed by me" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="(^OFF$)" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
</rules>
</rewrite>
</system.webServer>
これでうまくいき、私が使用しているディレクトリ以外はすべてsite / folder / root(アクセスする必要のあるすべてのファイルが設定されています)です。これで、ログイン時に使用したコードを使用して、サイトにアクセスできます。 / folder / loginfileとログインすると、site / folder/rootである必要があるときにsite/loginsuccessファイルに移動します。
他に何か必要なことがあれば教えてください!
ありがとうございました!
編集済み-----------
ログインに成功した後のリダイレクトは次のとおりです。
header("location:http://Site/folder/memberinterface.php");