Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
31 |
Tags
- 단축키
- VirtualBox
- IntelliJ
- Quartz
- tomcat
- vscode
- Windows 10
- lsof
- Eclipse
- JavaScript
- resource
- ssh
- Windows
- context
- profile
- 네트워크
- maVen
- Source
- bash
- GIT
- Mac
- xargs
- web.xml
- find
- 줄바꿈 문자
- plugin
- import
- netsh
- grep
- port
Archives
- Today
- Total
develog
[apache] .htaccess 리다이렉트 본문
디렉토리 리스트 안나오게 설정
# .htaccess
# 디렉토리 리스트 안나오게
Options -Indexes
/en 으로 접속시 /en/main 으로 리다이렉트
# .htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
# /en 으로 접속시 /en/main 으로 리다이렉트 시킨다
RewriteCond %{REQUEST_URI} ^/en/?$
RewriteRule (.*) https://%{HTTP_HOST}/en/main [R,L]
</IfModule>