내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.
해결됨

Doubt on Rewrite rules

Avatar

Level 2


Hi team,

May i know how to write a rewrite rule for

https://www.example.com/.testing-folder/sample-file.txt Internally it should hit /content/dam/testing-folder/sample-file.txt

 

I tried below but its not working

 

RewriteRule ^/.testing-folder/(.*)$ /content/dam/testing-folder/sample-file.txt [PT,L]

 

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Community Advisor

Hi @shyams67489715 
Rules looks fine.
could you please check the url, it seems there is a . before the testing-folder in the rule.

Arun Patidar

AEM LinksLinkedIn

원본 게시물의 솔루션 보기

5 답변 개

Avatar

Community Advisor

@shyams67489715 
Please try below rule

 

RewriteCond %{REQUEST_URI} ^/.testing-folder
RewriteRule ^/.testing-folder/(.*)$ /content/dam/testing-folder/$1 [PT,L]


Amanath Ullah

Avatar

정확한 답변 작성자:
Community Advisor

Hi @shyams67489715 
Rules looks fine.
could you please check the url, it seems there is a . before the testing-folder in the rule.

Arun Patidar

AEM LinksLinkedIn

Avatar

Community Advisor

@shyams67489715 

Below will help to internal redirect:

Regex:

RewriteCond %{HTTP_HOST} https://www.example.com

RewriteRule ^/.testing-folder/(.*) /content/dam/testing-folder/sample-file.txt [PT,L] 

 

OR

 

Exact match

RewriteCond %{HTTP_HOST} https://www.example.com

RewriteRule ^/.testing-folder/sample-file.txt$

/content/dam/testing-folder/sample-file.txt

Avatar

Community Advisor and Adobe Champion

The rule looks okay, but id rather do (make sure you escape the DOT)

 

RewriteRule ^/\.testing-folder/sample-file\.txt$ /content/dam/testing-folder/sample-file.txt [PT,L]

 

https://www.example.com/.testing-folder/sample-file.txt 

Avatar

Administrator

@shyams67489715 Did you find the suggestions from users helpful? Please let us know if more information is required. Otherwise, please mark the answer as correct for posterity. If you have found out solution yourself, please share it with the community.



Kautuk Sahni