URI 중 /kngil/skin 반복제거. php 확장자 노출 제거

This commit is contained in:
Lectom C Han
2026-02-05 12:09:12 +09:00
parent 8fa50e6d0d
commit 8501529eb6
16 changed files with 50 additions and 37 deletions

View File

@@ -278,7 +278,7 @@ try {
<body>
<script>
(function () {
const target = '/kngil/skin/index.php';
const target = '/';
if (window.opener && !window.opener.closed) {
try {
window.opener.postMessage({ type: 'OIDC_LOGIN_SUCCESS' }, window.location.origin);
@@ -295,7 +295,7 @@ try {
})();
</script>
<noscript>
<a href="/kngil/skin/index.php">메인으로 이동</a>
<a href="/">메인으로 이동</a>
</noscript>
</body>
</html>
@@ -305,5 +305,5 @@ try {
} catch (Exception $e) {
echo "<h1>로그인 오류</h1>";
echo "<p>" . htmlspecialchars($e->getMessage()) . "</p>";
echo "<a href='/kngil/index.php'>메인으로 돌아가기</a>";
echo "<a href='/'>메인으로 돌아가기</a>";
}