feat: GTSIT 사이트 구축

This commit is contained in:
박성필
2026-08-10 21:19:10 +09:00
commit dbb35d35c4
87 changed files with 48246 additions and 0 deletions

14
public/.htaccess Normal file
View File

@@ -0,0 +1,14 @@
Options -Indexes
DirectoryIndex index.php index.html
RewriteEngine On
RewriteCond %{HTTP_HOST} ^(?:www\.)?gtsit\.co\.kr$ [NC]
RewriteCond %{HTTPS} !=on [OR]
RewriteCond %{HTTP_HOST} ^www\.gtsit\.co\.kr$ [NC]
RewriteRule ^ https://gtsit.co.kr%{REQUEST_URI} [R=301,L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^ index.php [L,QSA]