반응형
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
- FCM
- spring3
- mybatis
- Java
- MSsql
- git
- centos7
- jquery
- submit
- NextJS
- nodejs
- popup
- Maven
- docker
- jenkins
- javascript
- rocky9
- yona
- Next.js
- Push
- node.js
- SpringBoot
- PM2
- ajax
- mysql
- Eclipse
- security
- config
- MariaDB
- pwa
Archives
- Today
- Total
ふたりで
apache 2.4.X RewriteRule 설정 본문
728x90
반응형
SMALL
- 숫자 또는 문자 또는 숫자와 문자로 조합된 문자열이 도메인루트의 바로 뒤에 붙어올경우
해당 문자열을 redriRedirect 할 URL의 마지막에 붙여주도록 설정 하는 방법이다.
- http://test.kr/{12345678} --> https://aaaa.bbbb.kr/popup/testView/{12345678}
- apache(httpd) VirVirtualHost 설정 부에 아래와 같이 RewriteRule 부분에 정규식을 적용하여 숫자 또는 문자 또는
숫자와 문자로 조합된 문자열이 $로 그룹핑이 되며, redriRedirect URL의 끝부분에 $1로 맵핑된다.
<VirtualHost *:80>
ServerName test.kr:80
ServerAlias test.kr
DocumentRoot "/opt/was/test.kr/httpd"
ErrorLog "logs/error_log"
CustomLog "logs/access_log" common
<Directory /opt/was/test.kr/httpd/>
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
RewriteEngine On
RewriteRule ^/([a-zA-Z0-9]+)$ https://aaaa.bbbb.kr/popup/testView/$1
</VirtualHost>
728x90
반응형
LIST
'Other' 카테고리의 다른 글
Swagger-Hub 와 API서버 연동 하기 (0) | 2020.12.01 |
---|---|
eclipse(sts) + yona(git)연동 (0) | 2020.12.01 |
jstl session에담은 값 참조하기 (0) | 2020.11.26 |
햣 cli 명령어 간략 정리 (0) | 2020.11.04 |
MS-SQL서로 다른 서버 간의 쿼리를 위해 (0) | 2020.03.13 |
Comments