반응형
아파치 rewrite는 유용하지만
까다롭기도 하다..
그중 특정쿼리만 빼는 방법을 알아보자
mysop.net/?var1=abc&var2=abc&var3=abc......
이런식으로 쿼리가 많은 경우
var2=abc만 빼고 주소를 만들어 주고 싶으면
아래와 같이 하자
RewriteCond %{QUERY_STRING} ^(.+?&|)var2=[^&]*(?:&(.*)|)$ [NC]
해당 쿼리만 빠진상태로 주소가 완성된다.
물론 var2를 사용할수 있다
주소에만 보이지 않을 뿐..
출처 : https://stackoverflow.com/questions/18935020/use-mod-rewrite-to-remove-parameter
728x90
반응형
'linux > apache' 카테고리의 다른 글
cache와 access-control-allow-origin 동시에 잡기 다중도메인 (0) | 2021.09.30 |
---|---|
rewrite 특정폴더 설정 제외 (0) | 2021.09.28 |
x-cache-detail: "Query string present but no explicit expiration time" (0) | 2021.09.24 |
apache SSL 500 ERROR (0) | 2021.09.17 |
apache cache attempting entity save (0) | 2021.07.16 |