인프라(infra)

www로 리다이렉트

주피터0410 2024. 11. 14. 14:10

httpd.conf
AllowOverride All 으로 수정

<Directory /var/www/html>
    AllowOverride All
</Directory>

 

 

.htaccess

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]

'인프라(infra)' 카테고리의 다른 글

openssl tomcat 실행 오류 Invalid keystore format  (0) 2024.10.29
ubuntu 18.04 + Janus Gateway 설치  (0) 2023.06.30
xampp 기본설정  (0) 2023.04.12
git username / password 저장  (0) 2023.03.30
Git Runners 등록  (0) 2023.03.30